ubuntu开启SSH服务远程登录 2023-08-08 linux 暂无评论 1513 次阅读 SSH分客户端openssh-client和openssh-server 如果你只是想登陆别的机器的SSH只需要安装openssh-client(ubuntu有默认安装,如果没有则sudo apt-get install openssh-client),如果要使本机开放SSH服务就需要安装openssh-server。 ``` dpkg -l | grep ssh ``` 安装ssh-server服务 安装ssh客户端程序 ``` sudo apt-get install openssh-client ``` 安装ssh服务端程序 ``` sudo apt-get install openssh-server ``` 然后确认ssh-server是否启动了: ``` ps -e | grep ssh ``` 如果看到sshd那说明ssh-server已经启动了。 如果没有则可以这样启动:`sudo /etc/init.d/ssh start`或`sudo service ssh start` 配置相关: ssh-server配置文件位于`/etc/ssh/sshd_config`,在这里可以定义SSH的服务端口,默认端口是22,你可以自己定义成其他端口号,如222。(或把配置文件中的“PermitRootLogin without-password”加一个“#”号,把它注释掉,再增加一句“PermitRootLogin yes”) 然后重启SSH服务: ``` sudo /etc/init.d/ssh stop sudo /etc/init.d/ssh start ``` 转自https://blog.csdn.net/e891377/article/details/127335908 标签: ubuntu 本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。