File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -19,9 +19,6 @@ echo mysql-apt-config mysql-apt-config/select-connector-odbc select connector-
1919export DEBIAN_FRONTEND=noninteractive
2020sudo -E dpkg -i ${mysql_apt_deb_file}
2121
22- # Create User and Database
23- mysql -u root -e " create user homestead;create database homestead;grant all on homestead.* to homestead@localhost identified by 'secret';"
24-
2522# Update
2623sudo apt-get -y update
2724
@@ -54,6 +51,8 @@ sudo apt-get -y install mysql-server
5451mysql-ctl start
5552sudo mysql_upgrade -u root --force --upgrade-system-tables
5653
54+ # Create User and Database
55+ mysql -u root -e " create user homestead;create database homestead;grant all on homestead.* to homestead@localhost identified by 'secret';"
5756
5857# Remove File and Folder
5958rm hello-world.php
You can’t perform that action at this time.
0 commit comments