728x90
반응형

SSH session이 지나도 background에 session이 유지

 

screen install

yum install screen

환경 변수 설정

vi ~/.screenrc
defscrollback 5000
termcapinfo xterm* ti@:te@
startup_message off
hardstatus on
hardstatus alwayslastline
hardstatus string "%{.bW}%-w%{.rW}%n*%t%{-}%+w %= %c ${USER}@%H"
bindkey -k k1 select 0
bindkey -k k2 select 1
bindkey -k k3 select 2

 

session작성
사용방법

screen -S 세션 이름

session에서 나온다

exit

session리스트 확인

[root@test ~]# screen -ls
There is a screen on:
    14982.test  (Attached)
1 Socket in /var/run/screen/S-root.

session에 재접속

screen -r [pid].[세션이름]
728x90
300x250

'IT > OS' 카테고리의 다른 글

Windows에서 SSH 하는 법  (0) 2021.08.19
네트워크 지연 발생 테스트  (0) 2021.08.19
crontab이 utc시간으로 기동될 경우의 설정 변경  (0) 2021.08.17
OS 각 환경별 디스크 크기 확장  (0) 2021.08.11
Linux Logrotate 설정  (0) 2021.08.09

+ Recent posts