Skip to content

Instantly share code, notes, and snippets.

@ispguru
Last active October 23, 2019 05:13
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 ispguru/d5e3b9d1602c42489ef72c9dac3bb661 to your computer and use it in GitHub Desktop.
Save ispguru/d5e3b9d1602c42489ef72c9dac3bb661 to your computer and use it in GitHub Desktop.
Install Mysql in Ubuntu 18.04
#!/bin/bash
sudo apt install mysql-server
# Check MYSQL Version
mysql --version
#To stop MYSQL
sudo service mysql stop
#To START MYSQL
sudo service mysql start
#To RESTART MYSQL
sudo service mysql restart
#https://www.youtube.com/watch?v=XQ8fnBfMKUQ
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment