RHCE 练习作业

发布时间:2024年01月23日

目录

1.配置ntp时间服务器,确保客户端主机能和服务主机同步时间

1)Chrony安装

2)Chrony服务端配置文件

3)客户端配置

4)时间同步?

2.配置ssh免密登陆,能够实现客户端主机通过服务器端的redhat账户进行基于公钥验证方式的远程连接

1)创建redhat账户

2)服务端redhat制作公钥

3)客户端server_node创建密钥?

4)将server_node的密钥发给redhat账号

5)测试


1.配置ntp时间服务器,确保客户端主机能和服务主机同步时间

服务端:server? ? ? ? 客户端主机:server_node

1)Chrony安装

[root@server ~]# yum install chrony -y
[root@server_node ~]# yum install chrony -y

[root@server ~]# systemctl start chronyd
[root@server ~]# systemctl enable chronyd

[root@server_node ~]# systemctl start chronyd
[root@server_node ~]# systemctl enable chronyd

2)Chrony服务端配置文件

[root@server ~]# vim /etc/chrony.conf

修改第三行为?server ntp.aliyun.com iburst,并在第23行将server_node添加进白名单

(命令模式下输入 :set nu 显示行号)修改完退出文件后重启服务

[root@server ~]# systemctl restart chronyd

3)客户端配置

——只需修改 /etc/chrony.conf中的第三行即可

[root@server_node ~]# systemctl restart chronyd  重启服务

4)时间同步?

2.配置ssh免密登陆,能够实现客户端主机通过服务器端的redhat账户进行基于公钥验证方式的远程连接

服务器端:server? ? ? ? 客户端主机:server_node

1)创建redhat账户

[root@server ~]# useradd redhat
[root@server ~]# passwd redhat

2)服务端redhat制作公钥

3)客户端server_node创建密钥?

4)将server_node的密钥发给redhat账号

5)测试

文章来源:https://blog.csdn.net/weixin_68256171/article/details/135775035
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。