目录
1.配置ntp时间服务器,确保客户端主机能和服务主机同步时间
2.配置ssh免密登陆,能够实现客户端主机通过服务器端的redhat账户进行基于公钥验证方式的远程连接
服务端:server? ? ? ? 客户端主机:server_node
[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
[root@server ~]# vim /etc/chrony.conf
修改第三行为?server ntp.aliyun.com iburst,并在第23行将server_node添加进白名单
(命令模式下输入 :set nu 显示行号)修改完退出文件后重启服务
[root@server ~]# systemctl restart chronyd
——只需修改 /etc/chrony.conf中的第三行即可
[root@server_node ~]# systemctl restart chronyd 重启服务
服务器端:server? ? ? ? 客户端主机:server_node
[root@server ~]# useradd redhat
[root@server ~]# passwd redhat