Centos 配置ssh服务

目录

1. 安装openssh-server服务

1.1 方式1:

1.2 方式2:

1.3 安装过程​

2. 验证服务

2.1 检查服务状态

2.2 检查端口

2.3 本地测试

 2.4 使用其他机器远程登录

3. 服务启停


1. 安装openssh-server服务

注:需要使用root权限

1.1 方式1:

sudo yum install openssh-server

1.2 方式2:

# 提升权限
su - root

yum install openssh-server

1.3 安装过程Centos 配置ssh服务_第1张图片

Centos 配置ssh服务_第2张图片

2. 验证服务

2.1 检查服务状态

systemctl status sshd

Centos 配置ssh服务_第3张图片

2.2 检查端口

netstat -apn | grep 22 | head

Centos 配置ssh服务_第4张图片

2.3 本地测试

ssh centos@localhost -P22

# -P22 表示端口

Centos 配置ssh服务_第5张图片

 2.4 使用其他机器远程登录

ssh [email protected] -P22

3. 服务启停

# start 
systemctl start sshd
# stop 
systemctl stop sshd
# status
systemctl status sshd

你可能感兴趣的:(基础环境部署,centos,ssh,服务器)