Skip to content

Instantly share code, notes, and snippets.

@jgentes
Created July 10, 2020 17:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jgentes/3ee2f9cd3c6edafdfd6187960d633c1b to your computer and use it in GitHub Desktop.
Save jgentes/3ee2f9cd3c6edafdfd6187960d633c1b to your computer and use it in GitHub Desktop.
Automatically start MSQL in WSL2
export MYSQLPID=$(pidof mysqld)
if [ -z $MYSQLPID ]; then sudo service mysql start; fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment