码迷,mamicode.com
首页 > 系统相关 > 详细

10.32-10.33 rsync服务同步;10.34 Linux系统日志10.35screen工具

时间:2018-01-31 22:10:09      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:退出   一个   ora   虚拟终端   local   roc   查询   vim   实现   

扩展:

1. Linux日志文件总管logrotate:  

http://linux.cn/article-4126-1.html 

2. xargs用法详解:

http://blog.csdn.net/zhangfn2011/article/details/6776925 

10.32 rsync通过服务同步(上)

? rsync 通过服务的方式同步:

1. 创建目录:

[root@hao-001 ~]# mkdir /tmp/rsync

2. 设置目录777权限:

[root@hao-001 ~]# chmod 777 /tmp/rsync

3. 编辑rsync配置文件:

[root@hao-001 ~]# vim /etc/rsyncd.conf

最下面另起行—插入

port=873

log file=/var/log/rsync.log

pid file=/var/run/rsyncd.pid

address=192.168.47.137

[hao1]

path=/tmp/rsync

use chroot=true

max connections=4

read only=no

list=true

uid=root

gid=root

#auth users=haolinux

#secrets file=/etc/rsyncd.passwd

hosts allow=192.168.47.134

rsyncd.conf配置文件详解

? port:自定义(指定)端口,启动rsyncd服务(默认是873端口)

? log file:自定义(指定)日志文件(自定义绝对路径)

? pid file:自定义(指定)pid文件,这个文件的作用涉及服务的启动、停止等进程管理操作。

? address:自定义(指定)启动rsyncd服务的IP

(假如你的机器有多个IP,就可以指定由其中一个启动rsyncd服务,如果不指定该参数,默认是在全部IP上启动)

? []:自定义模块名([hao1])。

? path:指定数据存放路径

? use chroot true/falseuse chroot true如果同步软链接,则被拦截;use chroot false 如果同步软链接,不会被拦截!!

表示在传输文件前首先chroot到path参数所指定的目录下。这样做的原因是实现额外的安全防护,但缺点是需要以roots权限,并且不能备份指向外部的符号连接所指向的目录文件。(默认情况下chroot值为true,如果你的数据当中有软连接文件,阿铭建议你设置成false。)

? max connections:指定最大同时连接数,(默认是0,即没有限制)

? read only ture:如果为true,则不能上传到该模块指定的路径下(read only false可以上传)

? list:表示当用户查询该服务器上的可用模块时,该模块是否被列出,设定: true列出,false隐藏。

? uid/gid:指定传输文件时,以哪个用户的身份传输。

? auth users:指定传输时要使用的用户名

? secrets file:指定密码文件,该参数连同上面的参数如果不指定,则不使用密码验证。

(注意该密码文件的权限一定要是600。格式:用户名:密码)

设置auth userssecrets file后,客户端服务端需要用户名密码了(若想在命令行中带上密码,可以设定一个密码文件)

? hosts allow:表示被允许连接该模块的主机,可以是IP或者ip网段(如果是多个IP,中间用空格隔开)

4. 启动服务:

[root@hao-001 ~]# rsync --daemon

5. 搜素 rsync服务,是否启动?

[root@hao-001 ~]# ps aux |grep rsync

hao2机器上操作:

6. 检查是否ping通hao1网卡ip:

[root@hao-02 ~]# ping 192.168.47.137

7. 安装telnet命令:

[root@hao-02 ~]# yum install -y telnet

8. 检查 hao1机器 ip端口 是否 ping通?

[root@hao-02 ~]# telnet 192.168.47.137 873

9. 如果不通,hao1hao2机器,把firewalld服务关掉:

[root@hao-02 ~]# systemctl stop firewalld

[root@hao-001 ~]# systemctl stop firewalld

10. 推送本地文件远程

把hao2的文件,推送到远程hao1模块对应的目录下:

hao2机器上的文件,传送给远程hao1机器—保存模块对应目录(/tmp/rsync)下 rsync -avP 本地推送文件   远程ip::模块名/重命名文件

[root@hao-02 ~]# rsync -avP /tmp/1.txt   192.168.47.137::hao1/222.txt

技术分享图片技术分享图片

11. 远程文件本地

把hao1模块对应目录下文件,拉到本地hao2的指定目录下,并重命名:

rsync -avP 远程ip::模块名/远程拉的文件     本地存放目录/重命名文件

[root@hao-02 ~]# rsync -avP 192.168.47.137::hao1/2232.txt  /tmp/123.txt

技术分享图片技术分享图片

12. 查看rsync操作日志:

[root@hao-001 ~]# cat /var/log/rsync.log

10.33 rsync通过服务同步(下)

1. 更改rsync配置文件:

[root@hao-001 ~]# vim /etc/rsyncd.conf

(把默认端口号873更改为8730)

更改内容:port=8730

2. 重启:

关闭rsync服务:

[root@hao-001 ~]# killall rsync

开启rsync服务:

[root@hao-001 ~]# rsync --daemon

3. hao2机器,同步hao1文件,需要指定端口号了:

rsync -avP 本地推送文件 --port hao1端口号 远程ip::模块名/重命名文件

[root@hao-02 ~]# rsync -avP /tmp/1.txt --port 8730 192.168.47.137::hao1/2242.txt

4. 查看可用模块:

? list:表示当用户查询该服务器上的可用模块时,该模块是否被列出,设定: true列出,false隐藏。

列出list=true  或隐藏 list=false

[root@hao-02 ~]# rsync --port=8730 192.168.47.137::

5. 配置文件(/etc/rsyncd.conf)中配置:

[root@hao-001 ~]# vim /etc/rsyncd.conf

消除#,注释符号,编辑:

auth users=自定义用户名  

secrets file=自定义密码文件路径  

技术分享图片技术分享图片

6. 创建 密码文件

[root@hao-001 ~]# vim /etc/rsyncd.passwd

格式: 自定义用户名:自定义密码

技术分享图片技术分享图片

7. 设置密码文件权限600

[root@hao-001 ~]# chmod 600 /etc/rsyncd.passwd

8. 在客户端hao2机器上操作:

rsync -avP 本地推送文件 --port=端口号 密码对应的用户名@远程ip::模块名/重命名文件

[root@hao-02 ~]# rsync -avP /tmp/1.txt --port=8730 haolinux@192.168.47.137::hao1/47.txt

技术分享图片技术分享图片

9. 客户端hao2机器上,创建密码文件:

[root@hao-02 ~]# vi /etc/rsync_pass.txt

内容:密码

技术分享图片技术分享图片

10. 密码文件设置600权限

[root@hao-02 ~]# chmod 600 /etc/rsync_pass.txt

11. 密码验证,免输入密码,就可以同步文件到远程:

? secrets file:指定密码文件,该参数连同上面的参数如果不指定,则不使用密码验证。

rsync -avP 本地推送文件 --port=端口号 --password-file=客户端密码文件路径 密码对应的用户名@远程ip::模块名/重命名文件

[root@hao-02 ~]# rsync -avP /tmp/1.txt --port=8730 --password-file=/etc/rsync_pass.txt haolinux@192.168.47.137::hao1/47.txt

技术分享图片

10.34 Linux系统日志

logrotate工具 使用参考:

https://my.oschina.net/u/2000675/blog/908189

1. 列出 linux系统日志文件:

(一周切割一次,保留四个日志文件带日期)

[root@hao-01 ~]# ls /var/log/messages*

2. 查看系统日志切割配置文件:

[root@hao-01 ~]# cat /etc/logrotate.conf

3. 内存系统系统日志

[root@hao-01 ~]# dmesg

4. 清除内存系统系统日志

[root@hao-01 ~]# dmesg -c

5. 记录系统启动日志

[root@hao-01 ~]# ls /var/log/dmesg

6. 查看正确用户登陆历史日志

[root@hao-01 ~]# last

?last命令调用的文件/var/log/wtmp,用这个命令查看

7. 查看失败用户登陆历史日志

[root@hao-01 ~]# lastb

?lastb命令调用的文件/var/log/btmp,用这个命令查看

8. 查看安全日志

[root@hao-01 ~]# less /var/log/secure

10.35 screen工具

?screen是一个虚拟终端

1. 安装screen

[root@hao-01 ~]# yum install -y screen

2. 进入虚拟终端

[root@hao-01 ~]# screen

3. 退出screen虚拟终端,但不结束:

键盘: ctral  a组合键  再按d

4. 查看虚拟终端列表

[root@hao-02 ~]# screen -ls

技术分享图片技术分享图片

5. 进入指定的终端screen -r 终端id号

[root@hao-02 ~]# screen -r 2237

6. 杀死(退出)运行的终端:

[root@hao-02 ~]# exit

7. 自定义screenscreen -S "自定义screen"

[root@hao-02 ~]# screen -S "hao_screen"

8. 进入自定义的screen

[root@hao-02 ~]# screen -r hao_screen

9. 查看虚拟终端列表

[root@hao-02 ~]# screen -ls

技术分享图片技术分享图片

10.32-10.33 rsync服务同步;10.34 Linux系统日志10.35screen工具

标签:退出   一个   ora   虚拟终端   local   roc   查询   vim   实现   

原文地址:http://blog.51cto.com/zhuneianxiang/2067487

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