php 启动时报错的简单解决方法

网络编程 2021-07-05 09:49www.168986.cn编程入门
php启动时报错的情况,想必很多朋友都有遇到吧,狼蚁网站SEO优化为大家介绍下比较不错的解决方法
php 启动报错
代码如下:

[root@abc lnmp]# service php-fpm start
Starting php-fpm eAelerator: Could not allocate 67108864 bytes, the maximum size the kernel allows is 33554432 bytes. Lower the amount of memory request or increase the limit in /proc/sys/kernel/shmmax.
[04-Dec-2013 19:06:44] NOTICE: PHP message: PHP Warning: [eAelerator] Can not create shared memory area in Unknown on line 0
[04-Dec-2013 19:06:44] NOTICE: PHP message: PHP Fatal error: Unable to start eAelerator module in Unknown on line 0
failed

代码如下:

[root@abc lnmp]# vi /etc/sysctl.conf
# Kernel sysctl configuration file for Red Hat Linux
#
# For binary values, 0 is disabled, 1 is enabled. See sysctl(8) and
# sysctl.conf(5) for more details.
# Controls IP packet forwarding
.ipv4.ip_forward = 0
# Controls source route verification
.ipv4.conf.default.rp_filter = 1
# Do not aept source routing
.ipv4.conf.default.aept_source_route = 0
# Controls the System Request debugging functionality of the kernel
kernel.sysrq = 0
# Controls whether core dumps will append the PID to the core filename.
# Useful for debugging multi-threaded applications.
kernel.core_uses_pid = 1
# Controls the use of TCP syncookies
.ipv4.tcp_syncookies = 1
# Disable filter on bridges.
.bridge.bridge-nf-call-ip6tables = 0
.bridge.bridge-nf-call-iptables = 0
.bridge.bridge-nf-call-arptables = 0
fs.file-max=65535
.ipv4.tcp_max_syn_backlog = 65536
.core.dev_max_backlog = 32768
.core.somaxconn = 32768
.core.wmem_default = 8388608
.core.rmem_default = 8388608
.core.rmem_max = 16777216
.core.wmem_max = 16777216
.ipv4.tcp_timestamps = 0
.ipv4.tcp_synack_retries = 2
.ipv4.tcp_syn_retries = 2
.ipv4.tcp_tw_recycle = 1
#.ipv4.tcp_tw_len = 1
.ipv4.tcp_tw_reuse = 1
.ipv4.tcp_mem = 94500000 915000000 927000000
.ipv4.tcp_max_orphans = 3276800
# TIME_OUT后等待时间
#.ipv4.tcp_fin_timeout = 30
#.ipv4.tcp_keepalive_time = 120
.ipv4.ip_local_port_range = 1024 65535
kernel.shmmax = 128000000

加上一句话 kernel.shmmax = 128000000
然后应用sysctl -p
代码如下:

[root@abc lnmp]# service php-fpm start
Starting php-fpm done
[root@abc lnmp]# /usr/bin/memcachedstart

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by