blob: c670d798415db87611e4f0df7054de61bb1bfb5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
README.Slackware
================
This document gives some basic instructions on setting up Zarafa on Slackware
1) Prepare your MySQL server
----------------------------
On your MySQL server, enter with an account with full privileges:
# mysql -u <your_account> -p<your_password>
In MySQL, create the database and user:
mysql> create database zarafa;
mysql> grant all priviliges on zarafa.* to zarafa@hn_gtw01.hn identified by 'zarafa';
mysql> flush privileges;
mysql> quit
You can change the name of the user and password as you please.
2) Edit Zarafa configuration files
----------------------------------
The sample configuration files are installed in /etc/zarafa/
Thera 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_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:
# zarafa-<service> start | stop
For instance:
# zarafa-server start
Select the services you need to start and put the commands in
/etc/rc.d/rc.local & /etc/rc.d/rc.local_shutdown
4) Creating "public store"
--------------------------
To create the public store of shared folders, use:
# zarafa-admin -s
5) Where to go from here
------------------------
With these steps, you have concluded the basic setup of Zarafa. For web
access, install the zarafa-webaccess-ajax package.
More documentation is available in the man-pages and from the Zarafa site:
http://www.zarafa.com/content/documentation
On this site, several manuals (including some translations) and whitepapers
can be downloaded.
|