在Linux中,要配置SSH服務,您需要首先確保已經安裝了OpenSSH服務器
打開終端。
更新系統軟件包列表:
sudo apt-get update
sudo apt-get install openssh-server
sudo systemctl start ssh
sudo systemctl enable ssh
sudo systemctl status ssh
現在,您已經成功配置了SSH服務。接下來,您可以使用以下命令連接到您的Linux服務器(請確保將your_username
和your_server_ip
替換為實際的用戶名和服務器IP地址):
ssh your_username@your_server_ip
如果您想要添加密鑰對以便使用非對稱加密進行身份驗證,請按照以下步驟操作:
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
ssh-copy-id your_username@your_server_ip
/etc/ssh/sshd_config
文件以禁用密碼身份驗證并啟用密鑰身份驗證(可選,但推薦):sudo nano /etc/ssh/sshd_config
找到以下行并進行修改:
# PasswordAuthentication yes
PasswordAuthentication no
保存并退出編輯器。
sudo systemctl restart ssh
現在,您應該能夠使用密鑰對連接到服務器,而不是密碼。