본문 바로가기

OS

[linux] ssh에 root접속 허용

ssh에 root 접속을 허용한다.

/etc/ssh/vi sshd_confg

PermitRootLogin no

# yes -> no 로 바꿔준다.

/etc/init.d/sshd restart

Stopping sshd: [ OK ]

Starting sshd: [ OK ]

--------------