Hey, I can not run more than 6 php scripts at the same time from 1 user (ip), how I can remove that limit and where ? Thank you for your help
lets say you open 10 tabs in browser and try to run some script which executes more than 20 seconds( so u could have some time to see that) , and first 6 scripts starts running , but the rest getting in line waiting till first 6 gets done. You would say its a browser limit , but if you using curl from cron - its same story. Its centos based server.
I think its could be some php protection against people who could attack your server with million request at the same time, so something holds that limit, but where it is located
There's only really 2 different limits it could be that I could think of. 1) Apache max connections limit 2) MySQL max connections - if reached would pause page generation until a connection opens up or the connection wait time timeout is reached Try looking into those.
Login via SSH and run the following command vi /etc/my.cnf Code (markup): now look for following fields, Try these values max_connections = 555 max_user_connections = 12 This should do the trick for you