摘要:
服务器提示: OSError: [Errno 24] Too many open files socket.accept() out of system resource 定位问题: 使用 lsof 查找打开文件较多的进程(该命令会按进程 ID 统计打开的文件数量,并按数量降序排列) lsof -n 阅读全文
摘要:
低版本的Mac 安装PHP就是受罪 brew install shivammathur/php/php@7.4 Warning: You are using macOS 11. We (and Apple) do not provide support for this old version. I 阅读全文
摘要:
一个新的 Python 项目部署到 Ubuntu 上的过程 项目拉取到服务器里之后 root@w115:/home/salesgpt# python3 -m venv myenv The virtual environment was not created successfully because 阅读全文
摘要:
1 <?php 2 3 use \Swoole\Coroutine; 4 use function \Swoole\Coroutine\run; 5 use \Swoole\Coroutine\Channel; 6 7 // 参考链接:https://wiki.swoole.com/#/corout 阅读全文