1、修改计算机名字
服务器名称 | IP地址 | 描述 | 系统 |
SQLAG01 | 192.168.31.203 | 节点1 | Centos 7 |
SQLAG02 | 192.168.31.204 | 节点2 | Centos 7 |
SQLAG03 | 192.168.31.205 | 节点3 | Centos 7 |
SQLAG | 192.168.31.206 | SQL监听器 | Centos 7 |
SSMS | 192.168.31.9 | SQL Server Management Studio | WinSRV |
hostnamectl set-hostname sqlag01
2、修改etc/hosts
记录
vim /etc/hosts
3、将hosts同步到其他节点
for a in {01..03} ; do scp /etc/hosts sqlag$a:/etc/hosts ; done
4、编辑/etc/ssh/sshd_config
将PubkeyAuthentication yes
参数取消注释
将PasswordAuthentication no
参数取消注释
vim /etc/ssh/sshd_config
5、将/etc/ssh/sshd_config
同步到其他节点
for a in {01..03} ; do scp /etc/ssh/sshd_config sqlag$a:/etc/ssh/sshd_config ; done
6、登陆sqlag01创建ssh-keygen
此操作需要登录到每台节点上创建
ssh-keygen -t rsa -P ''
7、将公钥id_rsa.pub
写入到authorized_keys
中
for a in {01..03} ; do ssh sqlag$a cat /root/.ssh/id_rsa.pub >> /root/.ssh/authorized_keys ; done
8、重启sshd服务
systemctl restart sshd.service
此文章为原创文章,作者:胖哥叨逼叨,如若转载,请与我联系并注明出处:https://www.pangshare.com/2544.htm
评论列表(2条)
第七步cat路径错误,是远程服务器的路径了
@Tom2035:感谢指正