diff --git a/README.md b/README.md index 9e7984a..470ae99 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,8 @@ Documentation * Extract the package to your htdocs folder:
shell> tar zxvf tsmmonitor-version.tar.gz
* Make the tsmmonitor files accessible by your Apache/www-User (e.g. 'www-data' user for the Debian Apache2 package):
shell> chown -R www-data:root tsmmonitor/
* Make your dsmerror.log file writetable to the Apache/www-User(e.g. 'www-data' user for the Debian Apache2 package):
shell> chown www-data:root /dsmerror.log
-* Create the database (e.g. with MySQL):
shell> mysqladmin --user=root --password create tsmmonitor
Verify the database was successfully created (e.g. with MySQL): +* Create the database (e.g. with MySQL):
shell> mysqladmin --user=root --password create tsmmonitor
+* Verify the database was successfully created (e.g. with MySQL):
 shell> mysql --user=root --password
@@ -98,7 +99,9 @@ mysql> quit
mysql> CREATE USER 'tsmmonitor'@'localhost' IDENTIFIED BY 'somepassword'; mysql> GRANT ALL PRIVILEGES ON `tsmmonitor`.* TO 'tsmmonitor'@'localhost'; mysql> flush privileges; -mysql> quit +mysql> quit + + * Verify the user was successfully created and has the appropriate permissions (e.g. with MySQL):