系統(tǒng)環(huán)境:LNMP
建網(wǎng)站原本是網(wǎng)站策劃師、網(wǎng)絡(luò)程序員、網(wǎng)頁設(shè)計師等,應(yīng)用各種網(wǎng)絡(luò)程序開發(fā)技術(shù)和網(wǎng)頁設(shè)計技術(shù)配合操作的協(xié)同工作。成都創(chuàng)新互聯(lián)公司專業(yè)提供成都網(wǎng)站設(shè)計、成都網(wǎng)站建設(shè)、外貿(mào)網(wǎng)站建設(shè),網(wǎng)頁設(shè)計,網(wǎng)站制作(企業(yè)站、響應(yīng)式網(wǎng)站建設(shè)、電商門戶網(wǎng)站)等服務(wù),從網(wǎng)站深度策劃、搜索引擎友好度優(yōu)化到用戶體驗的提升,我們力求做到極致!
Linux: Centos 7.2
Nginx: 1.10.3
MySQL: 5.6.35
PHP: 5.4.16
安裝zabbix-server
1 Repository installation
rpm -ivh http://repo.zabbix.com/zabbix/3.2/rhel/7/x86_64/zabbix-release-3.2-1.el7.noarch.rpm
2 Install Zabbix-server
yum install -y zabbix-release zabbix-server-mysql zabbix-get zabbix-web zabbix-web-mysql zabbix-agent
3 Creating initial database
shell> mysql -uroot -pmysql> create database zabbix character set utf8 collate utf8_bin; mysql> grant all privileges on zabbix.* to zabbix@localhost identified by ' '; mysql> quit;
zcat /usr/share/doc/zabbix-server-mysql-3.2.*/create.sql.gz | mysql -uzabbix -p zabbix
4 Database configuration for Zabbix server
# vi /etc/zabbix/zabbix_server.conf DBHost=localhost DBName=zabbix DBUser=zabbix DBPassword=
5 Starting Zabbix server process
# systemctl start zabbix-server # systemctl enable zabbix-server
6 PHP configuration for Zabbix frontend
vi /etc/php.ini max_execution_time 300 memory_limit 128M post_max_size 16M upload_max_filesize 2M max_input_time 300 always_populate_raw_post_data -1 date.timezone Asia/Shanghai
7. copy frontend web files
cp -R /usr/share/zabbix /usr/local/nginx/html
8. Starting Service
/etc/init.d/php-fpm systemctl restart nginx systemctl start zabbix-server.service
9. Install web
http://localhost/zabbix
問題
A non well formed numeric value encountered [zabbix.php:21 → require_once() → ZBase->run() → ZBase->proce***equest() → CView->getOutput() → include() → make_status_of_zbx() → CFrontendSetup->checkRequirements() → CFrontendSetup->checkPhpMemoryLimit() → str2mem() in include/func.inc.php:410]
A non well formed numeric value encountered [zabbix.php:21 → require_once() → ZBase->run() → ZBase->proce***equest() → CView->getOutput() → include() → make_status_of_zbx() → CFrontendSetup->checkRequirements() → CFrontendSetup->checkPhpPostMaxSize() → str2mem() in include/func.inc.php:410]
A non well formed numeric value encountered [zabbix.php:21 → require_once() → ZBase->run() → ZBase->proce***equest() → CView->getOutput() → include() → make_status_of_zbx() → CFrontendSetup->checkRequirements() → CFrontendSetup->checkPhpUploadMaxFilesize() → str2mem() in include/func.inc.php:410]
安裝完成之后啟動就出現(xiàn)這個問題,這個是因為PHP 7.1.0類型強(qiáng)化,處理方法也很簡單找到Zabbix WEB目錄下include/func.inc.php文件
問題解決
sed -i '/$last = strtolower(substr($val, -1));/a$val = substr($val,0,-1);' /usr/local/nginx/html/zabbix/include/func.inc.php