I have two servers Debian Squeeze 32 and Ubuntu 11.10 Server 64. The same script with the same command behaves very different.

Script test.php:

<?php for ($i = 0; $i < 5; $i++) { echo $i, "\n"; sleep(1); }

Command:

php -q test.php &
ps | grep php

Debain: I see numbers being printed and process title is php -q test.php as expected. pidof "php -q test.php" works fine.

Ubuntu: No numbers; process title is php. pidof "php -q test.php" does not work and I can't use pidof php.

What's wrong with Ubuntu?

Update WOW! pgrep -f "php -q test.php" works well while pidof "php -q test.php" doesn't.

Update 2 I'm not sure if this may apply, but under Debian I'm working in a regular console, while Ubuntu is being accessed by SSH.

link|improve this question

64% accept rate
may be worth trying to givie the full command line to php – Dagon Jan 9 at 19:54
@Dagon /usr/bin/php -q test.php & then ps | grep php produces absolutely the same. php is the title and pidof behaves the same. – Pavel Koryagin Jan 9 at 20:00
Works for me on the same Ubuntu version, 64-bit. – Narf Jan 9 at 20:05
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.