diff --git a/lam/docs/manual-sources/howto.xml b/lam/docs/manual-sources/howto.xml index e491f82c..5fc1cc9c 100644 --- a/lam/docs/manual-sources/howto.xml +++ b/lam/docs/manual-sources/howto.xml @@ -986,6 +986,12 @@ Have fun!
Version specific upgrade instructions +
+ 5.0 -> 5.1 + + No special actions needed. +
+
4.9 -> 5.0 @@ -1835,9 +1841,7 @@ Have fun! operations. Next, select the database type where LAM should store job - related data. - - Supported databases: + related data. Supported databases are SQLite and MySQL. SQLite @@ -1849,18 +1853,6 @@ Have fun! (pdo_sqlite.so). For Debian this is located in package php5-sqlite. - - - - - After the LDAP and database settings are done you can test - your settings. - - LAM also prints the crontab line that you need to run the - configured jobs on a daily basis. The command must be run as the - same user as your webserver is running. You are free to change the - starting time of the script or run it more often. - @@ -1869,7 +1861,49 @@ Have fun! - + MySQL + + This will store all job data in an external MySQL + database. + + You will need to install the MySQL PDO module for PHP + (pdo_mysql.so). For Debian this is located in package + php5-mysql. + + Steps to create a MySQL database and user: + + # login +mysql -u root -p +# create a database +mysql> create database lam_cron; +# +mysql> CREATE USER 'lam_cron'@'%' IDENTIFIED BY 'password'; +mysql> CREATE USER 'lam_cron'@'localhost' IDENTIFIED BY 'password'; +# grant access for new user +mysql> GRANT ALL PRIVILEGES ON lam_cron.* TO 'lam_cron'@'%'; +mysql> GRANT ALL PRIVILEGES ON lam_cron.* TO 'lam_cron'@'localhost'; + + + + + + + + + + + +Test your settings + + After the LDAP and database settings are done you can test + your settings. + + Cron entry + + LAM also prints the crontab line that you need to run the + configured jobs on a daily basis. The command must be run as the + same user as your webserver is running. You are free to change the + starting time of the script or run it more often.
diff --git a/lam/docs/manual-sources/images/jobs1.png b/lam/docs/manual-sources/images/jobs1.png index 85b657be..21485947 100644 Binary files a/lam/docs/manual-sources/images/jobs1.png and b/lam/docs/manual-sources/images/jobs1.png differ diff --git a/lam/docs/manual-sources/images/jobs3.png b/lam/docs/manual-sources/images/jobs3.png new file mode 100644 index 00000000..82840819 Binary files /dev/null and b/lam/docs/manual-sources/images/jobs3.png differ