博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
zabbix故障:apache源码和页面上的php红色提示
阅读量:6114 次
发布时间:2019-06-21

本文共 1282 字,大约阅读时间需要 4 分钟。

昨天把ansible-tower安装在这机器上,然后把原来的nginx霸占了,逼迫把zabbix的web换上了apache,源码安装上apache和重新编译php后,就出现这个php错误提示。

zabbix故障:apache源码和页面上的php红色提示
把php.ini的session路径改了,然后再把session目录递归权限改为777,然后重启php和apache即可。

附上关于zabbix的apache和php的源码指定的模块

php重启编译

./configure --prefix=/usr/local/php  --with-apxs2=/usr/local/apache2.4/bin/apxs --with-config-file-path=/usr/local/php/etc  --with-pdo-mysql=/usr/local/mysql  --with-mysqli=/usr/local/mysql/bin/mysql_config --with-libxml-dir --with-gd --with-jpeg-dir  --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-bz2 --with-openssl  --with-mcrypt --enable-soap  --enable-gd-native-ttf --enable-mbstring --enable-sockets --enable-exifwget https://mirrors.cnnic.cn/apache/httpd/httpd-2.4.29.tar.gz  wget https://mirrors.cnnic.cn/apache/apr/apr-1.6.3.tar.gz  wget https://mirrors.cnnic.cn/apache/apr/apr-util-1.6.1.tar.gz    apache源码编译  ./configure --prefix=/usr/local/apache2.4 --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util  --enable-so --enable-mods-shared=most  ★ 在zabbix页面上显示A session had already been started - ignoring session_start()这个提示,把session.auto_start = 1改为0即可  编辑httpd.conf文件添加如下代码LoadModule php7_module modules/libphp7.soAddType application/x-httpd-php .phpDirectoryIndex index.php index.htm index.html

转载于:https://blog.51cto.com/wsw26/2083800

你可能感兴趣的文章
BeagleBone Black第八课板:建立Eclipse编程环境
查看>>
在服务器上用Fiddler抓取HTTPS流量
查看>>
文件类似的推理 -- 超级本征值(super feature)
查看>>
【XCode7+iOS9】http网路连接请求、MKPinAnnotationView自定义图片和BitCode相关错误--备用...
查看>>
各大公司容器云的技术栈对比
查看>>
记一次eclipse无法启动的排查过程
查看>>
【转】jmeter 进行java request测试
查看>>
读书笔记--MapReduce 适用场景 及 常见应用
查看>>
SignalR在Xamarin Android中的使用
查看>>
走过电竞之路的程序员
查看>>
Eclipse和MyEclipse使用技巧--Eclipse中使用Git-让版本管理更简单
查看>>
[转]响应式表格jQuery插件 – Responsive tables
查看>>
8个3D视觉效果的HTML5动画欣赏
查看>>
C#如何在DataGridViewCell中自定义脚本编辑器
查看>>
【linux】crontab定时命令
查看>>
Android UI优化——include、merge 、ViewStub
查看>>
Office WORD如何取消开始工作右侧栏
查看>>
Android Jni调用浅述
查看>>
CodeCombat森林关卡Python代码
查看>>
第一个应用程序HelloWorld
查看>>