deploy zabbix 2.2.10 on ubuntu 14.04 64bit

来源:互联网 发布:java中文文档 编辑:程序博客网 时间:2024/06/08 08:59

Architecture:
Nginx: 1.4.6
php5: 5.5.9-1ubuntu4.12
mysql: 5.5


Install depends

#apt-get install -y nginx php5-fpm php5-gd mysql-server php5-mysql libmysqld-dev libxml2-dev libsnmp-dev libcurl4-openssl-dev

Config php5-fpm

#/etc/php5/fpm/pool.d/www.conf...> 33 ;listen = /var/run/php5-fpm.sock> 34 listen = 9000#service php5-fpm restart

Config nginx

#cp /etc/nginx/sites-available/default{,.bak}#vim /etc/nginx/sites-enabled/default... 24 ##      root /usr/share/nginx/html; 25         root /var/www/html/zabbix; 26         index index.php index.html index.htm;... 54         location ~ \.php$ { 55                 fastcgi_split_path_info ^(.+\.php)(/.+)$; 56         #       # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini 57         # 58         #       # With php5-cgi alone: 59                 fastcgi_pass 127.0.0.1:9000; 60         #       # With php5-fpm: 61         #       fastcgi_pass unix:/var/run/php5-fpm.sock; 62                 fastcgi_index index.php; 63                 include fastcgi_params; 64         }...#nginx -tnginx: the configuration file /etc/nginx/nginx.conf syntax is oknginx: configuration file /etc/nginx/nginx.conf test is successful#service nginx reload

Installing Zabbix daemons

download and untar pkg

#wget http://7mnldi.com1.z0.glb.clouddn.com/zabbix-2.2.10.tar.gz#tar -xf zabbix-2.2.10.tar.gz

Create user account

#groupadd zabbix#useradd -g zabbix zabbix

Create Zabbix database

For Zabbix server and proxy daemons, as well as Zabbix frontend, a database is required. It is not needed to run Zabbix agent.
SQL scripts are provided for creating database schema and inserting the dataset. Zabbix proxy database needs only the
schema while Zabbix server database requires also the dataset on top of the schema.

For example: config mysql

shell> mysql -u<username> -p<password>mysql> create database zabbix character set utf8 collate utf8_bin;mysql> quit;shell> mysql -u<username> -p<password> zabbix < database/mysql/schema.sql# stop here if you are creating database for Zabbix proxyshell> mysql -u<username> -p<password> zabbix < database/mysql/images.sqlshell> mysql -u<username> -p<password> zabbix < database/mysql/data.sql

Having created a Zabbix database, proceed to the following steps of compiling Zabbix.

Configure the sources

When configuring the sources for a Zabbix server or proxy, you must specify the database type to be used. Only one database type can be compiled with a server or proxy process at a time.

To see all of the supported configuration options, inside the extracted Zabbix source directory run:

#./configure --help

To configure the sources for a Zabbix server and agent, you may run something like:

#./configure --enable-server --enable-agent --with-mysql --enable-ipv6 --with-net-snmp --with-libcurl --with-libxml2

note: –with-libxml2 configuration option is required for virtual machine monitoring, supported since Zabbix 2.2.0.

To configure the sources for a Zabbix server (with PostgreSQL etc.), you may run:

#./configure --enable-server --with-postgresql --with-net-snmp

To configure the sources for a Zabbix proxy (with SQLite etc.), you may run:

#./configure --prefix=/usr --enable-proxy --with-net-snmp --with-sqlite3 --with-ssh2

To configure the sources for a Zabbix agent, you may run:

#./configure --enable-agent

Make and install everything

#make install

This step should be run as a user with sufficient permissions (commonly ‘root’, or by using sudo).

Running make install will by default install the daemon binaries (zabbix_server, zabbix_agentd, zabbix_proxy) in /usr/local/sbin and the client binaries (zabbix_get, zabbix_sender) in /usr/local/bin.

To specify a different location than /usr/local, use a --prefix key in the previous step of configuring sources, for example --prefix=/home/zabbix. In this case daemon binaries will be installed under /sbin, while utilities under /bin. Man pages will be installed under /share.

Review and edit configuration files

  • edit the Zabbix agent configuration file /usr/local/etc/zabbix_agentd.conf
    You need to configure this file for every host with zabbix_agentd installed.

You must specify the Zabbix server IP address in the file. Connections from other hosts will be denied.

  • edit the Zabbix server configuration file /usr/local/etc/zabbix_server.conf
    You must specify the database name, user and password (if using any).

With SQLite the full path to database file must be specified; DB user and password are not required.

The rest of the parameters will suit you with their defaults if you have a small installation (up to ten monitored hosts). You should change the default parameters if you want to maximize the performance of Zabbix server (or proxy) though. See the performance tuning section for more details.

  • if you have installed a Zabbix proxy, edit the proxy configuration file /usr/local/etc/zabbix_proxy.conf

You must specify the server IP address and proxy hostname (must be known to the server), as well as the database name, user and password (if using any)

With SQLite the full path to database file must be specified; DB user and password are not required.

Start up the daemons

Run zabbix_server on the server side.

#zabbix_server

Make sure that your system allows allocation of 36MB (or a bit more) of shared memory, otherwise the server may not start and you will see “Cannot allocate shared memory for .” in the server log file. This may happen on FreeBSD, Solaris 8.
See the “See also” section at the bottom of this page to find out how to configure shared memory.

Run zabbix_agentd on all the monitored machines.

#zabbix_agentd

Make sure that your system allows allocation of 2MB of shared memory, otherwise the agent may not start and you will see “Cannot allocate shared memory for collector.” in the agent log file. This may happen on Solaris 8.

If you have installed Zabbix proxy, run zabbix_proxy.

#zabbix_proxy

Installing Zabbix web interface

Copying PHP files
Zabbix frontend is written in PHP, so to run it a PHP supported webserver is needed. Installation is done by simply copying the PHP files from frontends/php to the webserver HTML documents directory.

#mkdir /var/www/html/zabbix#cd frontends/php# cp -a . /var/www/html/zabbix

Installing frontend

Step 1
In your browser, open Zabbix URL: http://<server_ip_or_name>
You should see the first screen of the frontend installation wizard.

Step 2
Make sure that all software prerequisites are met.

    Current value   RequiredPHP version 5.5.9-1ubuntu4.12   5.3.0   OKPHP option memory_limit 128M    128M    OKPHP option post_max_size        8M  16M FailPHP option upload_max_filesize  2M  2M  OKPHP option max_execution_time   30  300 FailPHP option max_input_time       60  300 FailPHP time zone                   unknown     FailPHP databases support           MySQL   OKPHP bcmath                      on      OKPHP mbstring                    on      OKPHP sockets                     on      OKPHP gd                          2.1.1   2.0 OKPHP gd PNG support              on      OKPHP gd JPEG support             on      OKPHP gd FreeType support         on      OKPHP libxml                      2.9.1   2.6.15  OKPHP xmlwriter                   on      OKPHP xmlreader                   on      OKPHP ctype                       on      OKPHP session                     on      OKPHP session auto start          off off OKPHP gettext                     on      OK

Resolve:

#vim /etc/php5/fpm/php.ini... 385 #max_execution_time = 30 386 max_execution_time = 300 396 #max_input_time = 60 397 max_input_time = 300 675 #post_max_size = 8M 676 post_max_size = 32M 883 date.timezone ='Asia/Shanghai'

make sure like this:

    Current value   RequiredPHP version 5.5.9-1ubuntu4.12   5.3.0   OKPHP option memory_limit 128M    128M    OKPHP option post_max_size        32M 16M OKPHP option upload_max_filesize  2M  2M  OKPHP option max_execution_time   300 300 OKPHP option max_input_time       300 300 OKPHP time zone                   Asia/Shanghai   OKPHP databases support           MySQL   OKPHP bcmath                      on      OKPHP mbstring                    on      OKPHP sockets                     on      OKPHP gd                          2.1.1   2.0 OKPHP gd PNG support              on      OKPHP gd JPEG support             on      OKPHP gd FreeType support         on      OKPHP libxml                      2.9.1   2.6.15  OKPHP xmlwriter                   on      OKPHP xmlreader                   on      OKPHP ctype                       on      OKPHP session                     on      OKPHP session auto start          off off OKPHP gettext                     on      OK

Step 3
Enter details for connecting to the database. Zabbix database must already be created.

Step 4
Enter Zabbix server details.

Step 5
Review a summary of settings.

Step 6
Download the configuration file and place it under conf/.

Step 7
Finish the installation.

Step 8
Zabbix frontend is ready! The default user name is Admin, password zabbix.

ISSUES

missing libmysqld-dev

#./configure --enable-server --enable-agent --with-mysql --enable-ipv6 --with-net-snmp --with-libcurl --with-libxml2...checking for mysql_config... noconfigure: error: MySQL library not found

Resolve:

#apt-get install -y libmysqld-dev

missing libxml2-dev

#./configure --enable-server --enable-agent --with-mysql --enable-ipv6 --with-net-snmp --with-libcurl --with-libxml2...checking for xml2-config... noconfigure: error: LIBXML2 library not found

Resolve:

#apt-get install -y libxml2-dev

missing libsnmp-dev

#./configure --enable-server --enable-agent --with-mysql --enable-ipv6 --with-net-snmp --with-libcurl --with-libxml2...checking for net-snmp-config... noconfigure: error: Invalid Net-SNMP directory - unable to find net-snmp-config

Resolve:

#apt-get install libsnmp-dev

missing libcurl4-openssl-dev

#./configure --enable-server --enable-agent --with-mysql --enable-ipv6 --with-net-snmp --with-libcurl --with-libxml2...checking for curl-config... noconfigure: error: Curl library not found

Resolve:

#apt-get install -y libcurl4-openssl-dev

On the dashboard of zabbix, it’s display:

"Zabbix server is not running: the information displayed may not be current."

Resolve:

## at first, test the port: 10051# telnet localhost 10051Trying ::1...Trying 127.0.0.1...telnet: Unable to connect to remote host: Connection refused## use netstat to check#netstat -anlp |grep 10051## not found 10051## check zabbix_server log#less /tmp/zabbix_server.log    ... 2317:20150901:140732.342 [Z3001] connection to database 'zabbix' failed: [1045] Access denied for user 'root'@'localhost' (using password: NO)  2317:20150901:140732.342 Database is down. Reconnecting in 10 seconds.  2317:20150901:140742.342 [Z3001] connection to database 'zabbix' failed: [1045] Access denied for user 'root'@'localhost' (using password: NO)  2317:20150901:140742.342 Database is down. Reconnecting in 10 seconds.  2317:20150901:140752.343 [Z3001] connection to database 'zabbix' failed: [1045] Access denied for user 'root'@'localhost' (using password: NO)    ...#vim /usr/local/etc/zabbix_server.conf    ...112 # DBPassword=113 DBPassword=yourdbpassword##and then,restart zabbix_server#killall zabbix_server && zabbix_server
0 0