更换yum源
设置 aliyun
的 yum
源
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
如果系统中没有wget,也可以使用curl
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
清理缓存,更新系统
yum clean all
yum makecache
yum update
安装openssh-server
使用 yum
安装软件包
yum install openssh-server
启动、停止、查看状态
# 使能服务
systemctl enable sshd
# 启动服务
systemctl start sshd
# 停止服务
systemctl stop sshd
# 查看状态
systemctl status sshd