天天看點

Centos6安裝Zabbix3.4

 一、關閉SELinux

查詢是否開啟了SELinux      

getenforce      

SELinux一共有3種狀态,分别是**Enforcing,Permissive**和**Disabled**狀态。第一種是預設狀态,表示強制啟用,第二種是寬容的意思,即大部分規則都放行。第三種是禁用,即不設定任何規則

setenforce 0                   #把SELinux關閉,此操作為臨時關閉,重新開機後失效      

   vim /etc/selnux/conf              #修改為disabled,此操作為永久關閉,重新開機後生效。

    #This file controls the state of SELinux on the system.
#SELINUX= can take one of these three values:
#enforcing - SELinux security policy is enforced.
#permissive - SELinux prints warnings instead of enforcing.
#disabled - No SELinux policy is loaded.
SELINUX=disabled   #disabled為關閉
#SELINUXTYPE= can take one of three two values:
#targeted - Targeted processes are protected,
#minimum - Modification of targeted policy. Only selected processes are protected. 
#mls - Multi Level Security protection.
SELINUXTYPE=targeted      

 二、關閉或防火牆或開放必需端口

關閉防火牆

service iptables stop      #關閉防火牆
chkconfig iptables off #關閉開機自啟
service iptables status#檢視防火牆狀态      

或者開放防火牆端口

vim /etc/sysconfig/iptables
# 加入如下代碼,比着兩葫蘆畫瓢 :)
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
#儲存後重新開機防火牆,開啟其他端口亦是如此。
service iptables restart      

三、檢視本機資訊,安裝編輯器,更新系統

                檢視本機IP位址:ifconfig

檢視系統版本 :cat /etc/issue 

檢視系統版本位數 :getconf LONG_BIT

檢視CPU是幾核的 :cat /proc/cpuinfo |grep "cores"|uniq

檢視有幾顆邏輯CPU : cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c  

檢視系統容量多少 :df -h

檢視PHP版本  :php -v

檢視端口 :ss -tnul

     安裝vim編輯器以及更新系統更新檔

yum install -y vim
yum  update      

步驟

1.    由于Centos6自帶的MySQL版本過低,需要安裝更新MySQL,是以先解除安裝。

yum remove mysql*      

2.    安裝MySQL、Zabbix、PHP的yum源

rpm -ivhhttp://repo.zabbix.com/zabbix/3.4/rhel/6/x86_64/zabbix-release-3.4-1.el6.noarch.rpm     
rpm -ivhhttp://repo.mysql.com/yum/mysql-5.6-community/el/6/x86_64/mysql-community-release-el6-5.noarch.rpm
rpm -ivhhttp://repo.webtatic.com/yum/el6/latest.rpm      

3.    yum安裝MySQL、Zabbix、PHP

yum install mysql-community-server
yum install zabbix-server-mysql zabbix-web-mysql zabbix-agent
yum install httpd php56w php56w-gd php56w-mysqlnd php56w-bcmath php56w-mbstring php56w-xml php56w-ldap      

4.    編輯MySQL的配置檔案并添加以下内容   #vim /etc/my.conf

[mysqld]
innodb_file_per_table=1      

5.    編輯php的ini檔案(vim /etc/php.ini)并修改一下内容,注意date.timezone一定要寫對,否則在配置完zabbix後,顯示的界面全部報錯 

post_max_size = 16M
max_execution_time = 300
max_input_time = 300
date.timezone = Asia/Shanghai
always_populate_raw_post_data = -1      

6.    修改httpd的預設路徑,修改為zabbix的路徑,以便于輸入IP直接通路zabbix。

#配置/etc/httpd/conf/httpd.conf,找到DocumenRoot以及Directory,修改路徑為/usr/share/zabbix

DocumentRoot "/usr/share/zabbix"
<Directory "/usr/share/zabbix">      

7.    初始化MySQL資料庫

mysql_secure_installation 
mysql -uroot -p				-u為賬号名,這裡是root,-p是密碼
...
mysql>  create database zabbix character set utf8 collate utf8_bin;
	Query OK, 1 row affected (0.00 sec)

mysql> grant all privileges on zabbix.* to 'zabbix'@'localhost' identified by 'zabbix';
	Query OK, 0 rows affected (0.00 sec)

mysql> flush privileges;
	Query OK, 0 rows affected (0.01 sec)      

8.    導入預設的Zabbix資料庫資訊,由于版本不一樣,是以路徑會不一樣。

zcat /usr/share/doc/zabbix-server-mysql-3.4.12/create.sql.gz | mysql zabbix -uroot -p      

9.    修改Zabbix_server.conf的配置檔案

找到如下行,DBuser為建立資料庫時的賬号

    DBpassword為資料庫的密碼

    DBhost為本機IP或localhost或127.0.0.1

    DBname為zabbix

vim /etc/zabbix/zabbix_server.conf
DBHost=localhost
DBName=zabbix
DBUser=zabbix
DBPassword=zabbix      

10.    啟動各項服務,并設定為開機自啟。

service httpd start
service zabbix-server start
service zabbix-agent start
service mysqld start
chkconfig httpd on
chkconfig mysqld on
chkconfig zabbix-agent on
chkconfig zabbix-server on      

打開浏覽器,輸入zabbix伺服器IP即可。

Zabbix預設管理者賬号為Admin,預設密碼為zabbix

mv /usr/share/zabbix/setup.php /usr/share/zabbix/setup.php.bak      

繼續閱讀