一、SSH服務安裝1、安裝ssh服務
假如你用的是redhat,fedora,centos等系列linux發行版linux 安裝sshandroid linux,這麼敲入以下指令:
sudo yum install sshd sudo yum install openssh-server
假如你使用的是debian,ubuntu,linuxmint等系列的linux發行版linux 安裝ssh,這麼敲入以下指令:
#
sudo apt-get install sshd sudo apt-get install openssh-server
2、啟動ssh服務
#
service sshd start or /bin/systemctl restart sshd.service or /etc/init.d/sshd start or sudo systemctl restart sshd
設定開機運行
chkconfig sshd on
查看ssh服務的狀態
#
sudo service sshd status
若果出現
#Loaded:error(Reason:Nosuchfileordirectory)
提示的話linux中文亂碼,說名沒有安裝ssh服務,依照第一步:安裝ssh服務。
倘若出現
Active:inactive(dead)
說明早已安裝了ssh服務,並且沒有開啟。根據第二步:開啟ssh服務
以上是SSH 服務安裝與啟動教學:Redhat、Debian 等系列 Linux 發行版的詳細內容。更多資訊請關注PHP中文網其他相關文章!