Re: [PHP] check socket status
Jim Moseby wrote: Assuming it has permissions, and all the stars are aligned, you should get the output of the 'netstat -l' command echoed to the screen. Thanks Jim, this really solved the problem up. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
RE: [PHP] check socket status
> > Jim Moseby wrote: > > Your server is *nix? You could: > > > > $netstat_info=`netstat -l`; // notice back-tics > > > > ...then parse through the output. > > > > JM > > `netstat -l | grep 5514` gives me information about listening > service on > port 5514. That's all I needed but I only can get this from *nix > console. How could I test it on PHP server side ? > Maybe I misunderstand what you are trying to do. Run this on your server: Assuming it has permissions, and all the stars are aligned, you should get the output of the 'netstat -l' command echoed to the screen. Once you have that, you can parse through the text in $netstat_info for what you want, or modify the command more to your liking (ie $netstat_info=`netstat -l | grep 5514`;) or whatever. JM -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] check socket status
Jim Moseby wrote: Your server is *nix? You could: $netstat_info=`netstat -l`; // notice back-tics ...then parse through the output. JM `netstat -l | grep 5514` gives me information about listening service on port 5514. That's all I needed but I only can get this from *nix console. How could I test it on PHP server side ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
RE: [PHP] check socket status
> Hi > > I need to check if socket on some port is listened by some service. > > How could I do this ? > Your server is *nix? You could: $netstat_info=`netstat -l`; // notice back-tics ...then parse through the output. JM -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php