Description:
fixed database creation instructions in installer script. patch by Witchakorn Kamolpornwijit
Commit status:
[Not Reviewed]
References:
Comments:
0 Commit comments 0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
Add another comment

r97:b344db59d967 - - 1 file changed: 2 inserted, 2 deleted

@@ -42,14 +42,14
42 42 echo " mysql -u root -p"
43 43 echo
44 44 echo " if you have just installed mysql, the root password is the one that you have just entered"
45 45 echo "2. Create a new database, a new user, and grant access to grader database:"
46 46 echo
47 47 echo " create user 'USERNAME'@'localhost' identified by 'PASSWORD';"
48 - echo " create database DATABASENEME;"
49 - echo " grant all on DATABASENAME.* to 'USERNAME'@'localhost';"
48 + echo " create database \`DATABASENEME\`;"
49 + echo " grant all on \`DATABASENAME\`.* to 'USERNAME'@'localhost';"
50 50 echo
51 51 echo " Replace USERNAME, PASSWORD, and DATABASENAME accordingly."
52 52 echo
53 53 echo "Hit enter when ready..."
54 54 read dummy
55 55 fi
You need to be logged in to leave comments. Login now