在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
现在,您应该能够使用密钥对连接到服务器,而不是密码。