centos 7 centos 8配置ssh遠端管理

Honorrun發表於2020-10-12

centos 7and8配置ssh遠端管理
yun -y install openssh-server //預設系統是安裝過的,沒安裝的進行安裝
vi /etc/ssh/sshd_config //vi編輯ssh配置檔案,不知道怎麼使vi編輯器的自行百度
Port 22 //去掉檔案#Port 22前#號
PermitRootLogin yes //去掉檔案#PermitRootLogin yes前#號,使root能登入
systemctl start sshd.service //啟動ssh
systemctl enable sshd.service //開機啟動ssh
systemctl status sshd.service //顯示ssh配置狀態
//其它,每次修改配置檔案需重啟ssh生效
systemctl stop sshd.service //停止ssh
systemctl restart sshd.service //停止ssh
systemctl disable sshd.service //開機停止啟動ssh

相關文章