我试图通过shell脚本多次运行一个php文件。
我打开这样的连接( index.php )。
mysqli_connect('localhost', 'root', 'password', 'database')
我收到了以下错误
mysqli_connect():( HY000 / 1040):连接太多
我可以在mysql max_connections
文件中增加my.cnf
。但我认为这不是一个好主意,因为它会降低速度。
这是运行时的.sh文件代码。它点击php文件750次
#!/bin/bash
max=750
for i in `seq 0 $max`
do
php index.php $i &
done
同时点击文件时,我可以在文件中共享一个连接吗?或者有更好的方法吗?
任何帮助?