3XLcom
asked on
Centos see process
I was installing a software to my cent os via ssh and it has been drop connection cause of ssh time out.
By the way , when i check for ps aux i should see the command :
root 3062 0.0 0.1 63844 1236 pts/0 S+ 17:26 0:00 sh latest
and i want to connect program again how should i do it ?
By the way , when i check for ps aux i should see the command :
root 3062 0.0 0.1 63844 1236 pts/0 S+ 17:26 0:00 sh latest
and i want to connect program again how should i do it ?
Simply login again
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
i have logged out from ssh so when i log in back the same screen does not come.
nohup not worked i want to return an existing app.
nohup not worked i want to return an existing app.
What was the existing app?
Actually, when you logout, the processes running are killed except if they were running in background with either nohup or disown
Also, you can increase your ssh timeout by
echo “7200¿ > /proc/sys/net/ipv4/tcp_kee palive_tim e
Actually, when you logout, the processes running are killed except if they were running in background with either nohup or disown
Also, you can increase your ssh timeout by
echo “7200¿ > /proc/sys/net/ipv4/tcp_kee
ASKER
ok but i need to go back to app. i was installing centos
You were installing packages or installing the Centos OS?
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
Thanks