PHP (5.6.11-1 on Debian Strech/sid) does not allows me to run two instaces of cli.
I've tried to execute following script two times. First script runs normally. Second one is locked until first one is killed.
#!/usr/bin/env php
<?php
$i = 0;
while (++$i) {
var_dump($i);
sleep(1);
}
Do you know what may be reason of that strange behaviour?
Edit: Issue does not occur on other machines. (?)
Edit: Is there something in configuration files of php, that could do that?