Lists of commands and remove services in orthanc services - Ubuntu 16 using terminal
listing and killing running services.
to list all running services at same pot using terminal
netstat -tulpn | grep 80
sudo netstat -nl -p tcp | head
to Kill a service
sudo kill -16601 //port number
killall mongod //kill mongod or mongo
nginx -s stop //stop nginx services and free port
Comments
Post a Comment