1.客户机远程登录服务器
1)关闭服务器密钥验证方式,使用密码验证登录,允许root登录
vim /etc/ssh/sshd_config
46 PermitRootLogin yes
51 PubkeyAuthentication no
73 PasswordAuthentication yes
2)客户机密码方式远程登录服务器
[root@dsrw ~]# ssh 192.168.10.2
root@192.168.10.2's password:
Activate the web console with: systemctl enable --now cockpit.socket
Last login: Mon Dec 19 11:03:46 2022 from 192.168.10.4
2.在客户机1Tmux服务创建一个新的会话窗口,名称为share
[root@dsrw ~]# tmux new -s share
使用客户端2也远程连接到服务器,并执行获取远程会话的命令,两台客户端就能看到相同的内容了。
[root@dsrw ~]# ssh 192.168.10.2
root@192.168.10.2's password:
Activate the web console with: systemctl enable --now cockpit.socket
Last login: Mon Dec 19 11:03:46 2022 from 192.168.10.4
[root@dsrw ~]tmux attach-session -t share
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
请登录后查看评论内容