Skip to content

Instantly share code, notes, and snippets.

@gabriel-rcpereira
Last active February 3, 2025 22:55
Show Gist options
  • Select an option

  • Save gabriel-rcpereira/abd461894331423b25a285550e516601 to your computer and use it in GitHub Desktop.

Select an option

Save gabriel-rcpereira/abd461894331423b25a285550e516601 to your computer and use it in GitHub Desktop.
Useful commands

Gradle

Kill process that locks Gradle file:

PID=`fuser -c [path]/journal-1.lock`
kill -9 $PID

Stop Gradle processes

./gradlew --stop

Netstat

netstat -na | grep "8080"

Kubernetes - AWS - EKS

Setup AWS - EKS

aws eks update-kubeconfig --region [region] --name [name]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment