We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1cfa73 commit 1d34438Copy full SHA for 1d34438
c9_php_mysql.sh
@@ -19,9 +19,6 @@ echo mysql-apt-config mysql-apt-config/select-connector-odbc select connector-
19
export DEBIAN_FRONTEND=noninteractive
20
sudo -E dpkg -i ${mysql_apt_deb_file}
21
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
-
25
# Update
26
sudo apt-get -y update
27
@@ -54,6 +51,8 @@ sudo apt-get -y install mysql-server
54
51
mysql-ctl start
55
52
sudo mysql_upgrade -u root --force --upgrade-system-tables
56
53
+# Create User and Database
+mysql -u root -e "create user homestead;create database homestead;grant all on homestead.* to homestead@localhost identified by 'secret';"
57
58
# Remove File and Folder
59
rm hello-world.php
0 commit comments