summaryrefslogtreecommitdiffstats
path: root/network/cacti/README.SBo
blob: d864b2f9c01ada2bf0f34f68ea852d961b3be78e (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
## mysql

$ cat /etc/my.cnf.d/server.cnf
[...]
[mysqld]
collation-server = utf8_unicode_ci
init-connect='SET NAMES utf8'
character-set-server = utf8
innodb_buffer_pool_size = 1G
[...]

$ mysql_install_db --user=mysql

$ chmod +x /etc/rc.d/rc.mysqld

$ sh /etc/rc.d/rc.mysqld start

$ /usr/bin/mysql_secure_installation

$ cat ~/.my.cnf
[client]
password=somepassword

$ mysql
> CREATE DATABASE cacti;
> GRANT ALL ON cacti.* TO cactiuser@localhost IDENTIFIED BY 'cactiuser';

$ mysql -D cacti </usr/share/cacti/cacti.sql

$ mysql
> mysql -D mysql </usr/share/mysql/mysql_test_data_timezone.sql
> GRANT SELECT ON mysql.time_zone_name TO 'cactiuser'@'localhost';

##The Cacti Database has not been initialized. Please initilize it before continuing.
##
##To initilize the Cacti database, issue the following commands either as root or using a valid account.
##
##mysqladmin -uroot -p create cacti
##
##mysql -uroot -p -e "grant all on cacti.* to 'someuser'@'localhost' identified by 'somepassword'"
##
##mysql -uroot -p -e "grant select on mysql.time_zone_name to 'someuser'@'localhost' identified by 'somepassword'"
##
##mysql -uroot -p cacti < /pathcacti/cacti.sql
##
##Where /pathcacti/ is the path to your Cacti install location.
##
##Change someuser and somepassword to match your site preferences. The defaults are cactiuser for both user and password.
##
##NOTE: When installing a remote poller, the config.php file must be writable by the Web Server account, and must include valid connection information to the main Cacti server. The file should be changed to read only after the install is completed.
##


## php

$ cat /etc/php.ini
[...]
date.timezone = Europe/Paris
[...]



## httpd

cat $ /etc/httpd/httpd.conf
[...]
ServerName www.example.com:80
[...]
DirectoryIndex index.html index.php
[...]
Include /etc/httpd/mod_php.conf
[...]

$ chmod 755 /etc/rc.d/rc.httpd
$ /etc/rc.d/rc.httpd start



## cacti

$ vim config.php