Skip to content

Commit 6452f4c

Browse files
committed
MySQL sintax
1 parent 7372c57 commit 6452f4c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

deployingzscluster.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,16 @@ Zend Server user interface is driven by MySQL database and separate instance of
2525

2626
`
2727
mysql> CREATE USER 'zend_db_user'@'localhost' IDENTIFIED BY 'zend_db_pass';
28-
mysql> GRANT ALL PRIVILEGES ON zend_db_name.* TO 'zend_db_user'@'localhost'
28+
`
29+
30+
`mysql> GRANT ALL PRIVILEGES ON zend_db_name.* TO 'zend_db_user'@'localhost'
2931
WITH GRANT OPTION;`
3032

3133
`
3234
mysql> CREATE USER 'zend_db_user'@'%' IDENTIFIED BY 'zend_db_pass';
35+
`
36+
37+
`
3338
mysql> GRANT ALL PRIVILEGES ON zend_db_name.* TO 'zend_db_user'@'%'
3439
WITH GRANT OPTION;
3540
`

0 commit comments

Comments
 (0)