From a5883597d3eba7846c3e0317138adc387a8d018f Mon Sep 17 00:00:00 2001 From: Michael Clemens Date: Sat, 26 Jan 2013 20:14:39 +0100 Subject: [PATCH] mc --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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):