时间:2021-07-01 10:21:17 帮助过:6人阅读
Nginx
php5
mysql
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.ini57#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 -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: 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
# stophereifyouarecreatingdatabaseforZabbixproxyshell> 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
agent
configuration file /usr/local/etc/zabbix_agentd.conf You must specify the Zabbix server IP address in the file. Connections from other hosts will be denied.
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.
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://
You should see the first screen of the frontend installation wizard.
Step 2
Make sure that all software prerequisites are met.
Current value Required
PHP version5.5.9-1ubuntu4.125.3.0 OK
PHP option memory_limit 128M 128M OK
PHP option post_max_size 8M 16M Fail
PHP option upload_max_filesize 2M 2M OK
PHP option max_execution_time 30300 Fail
PHP option max_input_time 60300 Fail
PHP time zone unknown Fail
PHP databases support MySQL OK
PHP bcmath onOK
PHP mbstring onOK
PHP sockets onOK
PHP gd 2.1.12.0 OK
PHP gd PNG support onOK
PHP gd JPEG support onOK
PHP gd FreeType support onOK
PHP libxml 2.9.12.6.15 OK
PHP xmlwriter onOK
PHP xmlreader onOK
PHP ctype onOK
PHP session onOK
PHP session auto start off off OK
PHP gettext onOK
Resolve:
#vim /etc/php5/fpm/php.ini...385#max_execution_time = 30386 max_execution_time = 300396#max_input_time = 60397 max_input_time = 300675#post_max_size = 8M676 post_max_size = 32M
883 date.timezone ='Asia/Shanghai'
make sure like this:
Current value Required
PHP version5.5.9-1ubuntu4.125.3.0 OK
PHP option memory_limit 128M 128M OK
PHP option post_max_size 32M 16M OK
PHP option upload_max_filesize 2M 2M OK
PHP option max_execution_time 300300 OK
PHP option max_input_time 300300 OK
PHP time zone Asia/Shanghai OK
PHP databases support MySQL OK
PHP bcmath onOK
PHP mbstring onOK
PHP sockets onOK
PHP gd 2.1.12.0 OK
PHP gd PNG support onOK
PHP gd JPEG support onOK
PHP gd FreeType support onOK
PHP libxml 2.9.12.6.15 OK
PHP xmlwriter onOK
PHP xmlreader onOK
PHP ctype onOK
PHP session onOK
PHP session auto start off off OK
PHP gettext onOK
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... no
configure: 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... no
configure: 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... no
configure: 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... no
configure: error: Curl library not found
Resolve:
#apt-get install -y libcurl4-openssl-dev
On the dashboard of zabbix, it’s display:
"Zabbix server isnot running: the information displayed may notbe current."
Resolve:
#vim /var/www/html/zabbix/conf/zabbix.conf.php$ZBX_SERVER = 'localhost';
> $ZBX_SERVER = '192.168.22.122'; #your ip address#
版权声明:本文为博主原创文章,未经博主允许不得转载。
以上就介绍了deploy zabbix 2210 on ubuntu 1404 64bit,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。