diff options
Diffstat (limited to 'network/zarafa/README.Slackware')
-rw-r--r-- | network/zarafa/README.Slackware | 31 |
1 files changed, 23 insertions, 8 deletions
diff --git a/network/zarafa/README.Slackware b/network/zarafa/README.Slackware index d86165b9d7..569141b247 100644 --- a/network/zarafa/README.Slackware +++ b/network/zarafa/README.Slackware @@ -23,28 +23,43 @@ You can change the name of the user and password as you please. ---------------------------------- The sample configuration files are installed in /etc/zarafa/ -Thera are files for the server, spooler, gateway, etc. +There are files for the server, spooler, gateway, etc. Change at least the file server.cfg to the correct values for your MySQL server: - mysql_host (can be localhost is mysql is on the same box) + mysql_host (can be localhost if mysql is on the same box) mysql_user (default is root, not a good idea) mysql_password 3) Starting and stopping services --------------------------------- -You can start and stop the zarafa services with the command: +For all services a /etc/rc.d/rc.zarafa-* script is installed. +To start a particular service, make the script executable and include a few +lines in your /etc/rc.d/rc.local and /etc/rc.d/rc.local_shutdown script. - # zarafa-<service> start | stop +As an example for the zarafa-server: -For instance: + # chmod +x /etc/rc.d/rc.zarafa-server - # zarafa-server start +Include the following lines in /etc/rc.d/rc.local, they will check all +scripts related to zarafa and start them if the executable bit is set: -Select the services you need to start and put the commands in -/etc/rc.d/rc.local & /etc/rc.d/rc.local_shutdown + for z in server spooler gateway dagent ical monitor indexer ; do + if [ -x /etc/rc.d/rc.zarafa-$z ]; then + /etc/rc.d/rc.zarafa-$z start + fi + done + +To stop them at shutting down your server, include these lines in +/etc/rc.d/rc.local_shutdown: + + for z in indexer monitor ical dagent gateway spooler server ; do + if [ -x /etc/rc.d/rc.zarafa-$z ]; then + /etc/rc.d/rc.zarafa-$z stop + fi + done 4) Creating "public store" -------------------------- |