码迷,mamicode.com
首页 > 其他好文 > 详细

day_03

时间:2017-01-10 18:19:47      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:day_03

已有desktop和server两台虚拟机,配置如下:

1)打包desktop主机上的/home目录,格式为YYYY_MM_DD_home.tar.gz并保存在/mnt目录;

tar zcf /mnt/`date +%F`.tar.gz /home

2)无密码传输该打包文件到server主机的/home/student/目录下;

ssh-keygen

ssh-copy-id -i /root/.ssh/id_rsa.pub root@172.25.254.173

scp /mnt/2017-01-10.tar.gz root@172.25.254.173:/home/student/

3)desktop主机通过命令将server主机的压缩包解压到/home/student/Downloads目录下;

ssh root@172.25.254.173

tar xf /home/student/2017-01-10.tar.gz -C /home/student/Downloads

4)不允许以密码认证方式远程连接server主机。

vim /etc/ssh/sshd_config

78行改为 PasswordAuthentication no

5)只允许student用户通过秘钥方式远程登录

vim /etc/ssh/sshd_config

Allowusers student

6)为保证系统安全不允许以root用户身份连接server主机

vim /etc/ssh/sshd_config

48行改为 PermitRootLogin no


day_03

标签:day_03

原文地址:http://12465890.blog.51cto.com/12455890/1890774

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!