📌  相关文章
📜  *15856 connect() to unix: var run php php8.0-fpm.sock failed (11: 资源暂时不可用) - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:50.648000             🧑  作者: Mango

代码示例1
## Change the limits, write the lines in the / etc / sysctl.conf file
nano /etc/sysctl.conf

## add
net.core.somaxconn = 20000
net.core.netdev_max_backlog = 65535

## Apply parameters
sysctl -p

## Restart php-fpm
service php-fpm restart