zabbix安装部署

发布于 2021-11-30 05:27:32 字数 2571 浏览 732 评论 4

各位好,本人近期在搭建lnmp平台下的zabbix.遇到php时间的问题,请帮忙看看

time zone for  PHP is not set(图片上传不了,就是这个报错,没设置PHP时间)

 vi /etc/php.ini 

1.[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = "Asia/Shanghai"

2.nginx的配置

 vi /usr/local/nginx-1.8.0/conf/nginx.conf 


  server {
        listen       80;
        server_name  localhost;


        #charset koi8-r;


        #access_log  logs/host.access.log  main;


        location / {
            root   html;
            index  index.html index.htm index.php;
        }
        #error_page  404              /404.html;


        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }


        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ .php$ {
        #    proxy_pass   http://127.0.0.1;
        #}


        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        location ~ .php$ {
           root           html;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME /scripts$fastcgi_script_name;
            include        fastcgi_params;
            include     fastcgi.conf;
        }





如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

不乱于心 2021-12-04 14:10:19

谢谢, 问题得到了解决。

筱武穆 2021-12-04 14:09:41
  1. 确认zabbix在用的php会使用/etc/php.ini这个文件作为配置
  2. 改完配置之后要重启php-fpm
瑾夏年华 2021-12-04 09:45:05

报错如上

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文