查找命令
1.[root@localhost ~]# which cat
2.[root@localhost ~]# whereis cat
3.[root@localhost ~]# locate install.log (更新[root@localhost ~]# updatedb)
4.find
find 路徑 選項(xiàng) 值 [-exec|-ok rm -rf {} ;]
-print: find命令將匹配到的文件輸出到標(biāo)準(zhǔn)輸出
名稱
[root@localhost ~]# find / -name install.log
類型
[root@localhost ~]# find / -type d
[root@localhost ~]# find / -type p -ls
硬連接數(shù)查找
[root@localhost ~]# find / -links 10 -ls
根據(jù)inode號(hào)查找
[root@robin ~]# find /root/ -inum 655934 -ls 長(zhǎng)格式顯示
根據(jù)擁有者或者所屬組
[root@localhost home]# find /home/ -user robin
[root@localhost home]# find /home/ -group uplooking
[root@localhost home]# find /home/ -nouser -ls
[root@localhost home]# find /home/ -nogroup -ls
[root@localhost home]# find /home/ -nouser -a -nogroup -ls
[root@localhost home]# find /home/ ( -nouser -o -nogroup ) -ls
[root@localhost home]# find /home/ -nouser -exec rm -rf {} ;
[root@localhost home]# find /home/ -nogroup -ok rm -rf {} ; 交互式
文件大小
[root@localhost tmp]# find /tmp/ -size 30M
[root@localhost tmp]# find /tmp/ -size +30M
[root@localhost tmp]# find /tmp/ -size -30M
[root@localhost tmp]# find /tmp/ -size +15M -a -size -38M
[root@localhost tmp]# find /tmp/test -size -15M -o -size +38M
按時(shí)間
[root@robin test]# touch -d 20151110 aa.txt 修改Access和Modify 時(shí)間
[root@robin test]# touch -m -t 201511101212.30 aa.txt 時(shí)間和日期 修改Modify 時(shí)間
[root@robin test]# find /tmp/test/ -mtime 2 -ls
[root@robin test]# find /tmp/test/ -mtime -10
[root@robin test]# find /tmp/test/ -mtime +10
[root@robin test]# find /tmp/test/ -mtime -5 -o -mtime +10
[root@robin test]# find /tmp/test/ -mtime +10 -a -mtime -5
按權(quán)限
[root@localhost test]# find /tmp/ -perm 705 正好匹配
[root@localhost test]# find /tmp/test/ -perm +100 任意匹配
[root@localhost test]# find /tmp/test/ -perm -201 完全匹配
練習(xí):
查找在/root目錄下 大小大約20k 小于100k文件 拷貝到/tmp下去
[root@localhost test]# find /root/ -size +20k -a -size -100k -exec cp -r {} /tmp/ ;
[root@localhost test]# cp -r find /root/ -size +20k -a -size -100k
/tmp/
查找系統(tǒng)中屬于robin或者zorro的文件 拷貝到/tmp下
[root@localhost test]# find / ( -user zorro -o -user robin ) -exec cp -r {} /tmp/ ;
[root@localhost ~]# find / -type f |xargs file
[root@localhost tmp]# cut -d: -f 1 /etc/passwd | xargs mkdir
系統(tǒng)服務(wù)
DHCP(動(dòng)態(tài)分配IP地址)
服務(wù)端:
安裝軟件:dhcp-4.1.1-34.P1.el6.x86_64.rpm
配置文件:/etc/dhcp/dhcpd.conf
cp /usr/share/doc/dhcp-4.1.1/dhcpd.conf.sample /etc/dhcp/dhcpd.conf
更改主機(jī)地址:跟VM1卡地址在一個(gè)網(wǎng)段
端口:67服務(wù)器 68客戶端
[root@localhost home]# vim /etc/dhcp/dhcpd.conf
subnet 10.10.10.0 netmask 255.255.255.0 {
range 10.10.10.100 10.10.10.254;
option domain-name-servers 202.106.0.20;
option domain-name "internal.example.org";
option routers 10.10.10.1;
default-lease-time 600;
max-lease-time 7200;
}
啟動(dòng)服務(wù):service dhcpd restart
啟動(dòng)服務(wù)
客戶端測(cè)試 網(wǎng)卡設(shè)置成dhcp
C S
--------DHCP DISCOVER--------->
<-------DHCP OFFER-------------
--------DHCP REQUEST---------->
<-------DHCP ACK---------------
租約文件:
服務(wù)端:/var/lib/dhcpd/dhcpd.leases
客戶端:/var/lib/dhcpd/dhclient/dhclient-eth1.leases
dhclient -------- 獲取地址的進(jìn)程 killall dhclient (殺死進(jìn)程重新獲取ip)
指定ip地址分配:
[root@localhost home]# vim /etc/dhcp/dhcpd.conf
host client1 {
hardware ethernet 00:50:56:2e:dd:17;
fixed-address 10.10.10.250;
}
日志服務(wù)器
日志存放位置:/var/log
日志服務(wù)啟動(dòng):service rsyslog restart
日志配置文件:/etc/rsyslog.conf
AAAA.BBBB CCCC
AAAA 產(chǎn)生日志的對(duì)象
mail
authpriv
cron
uucp
news
BBBB 日志級(jí)別
debug
info
notice
warnning
error
crit
alert
emerg
mail.info mail對(duì)象產(chǎn)生正常信息以上級(jí)別
mail.=info mail對(duì)象產(chǎn)生的日志只記錄正常信息
mail.!=info mail對(duì)象產(chǎn)生的日志除了正常信息以外記錄
CCCC 保存日志的位置
1.發(fā)送到終端
.info;mail.none;authpriv.none;cron.none /dev/pts/3
2.發(fā)送個(gè)用戶
*.info;mail.none;authpriv.none;cron.none robin
3.發(fā)送到文件
*.info;mail.none;authpriv.none;cron.none /tmp/log.log
日志的集中管理
服務(wù)端:
UDP模式傳輸數(shù)據(jù)
1.[root@robin ~]# vim /etc/rsyslog.conf
$ModLoad imudp
$UDPServerRun 514
[root@robin ~]# service rsyslog restart
TCP模式傳輸數(shù)據(jù)
[root@robin ~]# vim /etc/rsyslog.conf
$ModLoad imtcp
$InputTCPServerRun 514
客戶端:
UDP
[root@data1 ~]# vim /etc/rsyslog.conf
.info;mail.none;authpriv.none;cron.none @172.16.110.1
[root@data1 ~]# service rsyslog restart
TCP
[root@data1 ~]# vim /etc/rsyslog.conf
authpriv. @@172.16.110.1
[root@data1 ~]# service rsyslog restart
日志輪轉(zhuǎn)
配置文件:/etc/logrotate.conf
vim /etc/logrotate.conf
weekly 每周切割日志
rotate 4 保存最近4周日志
create 創(chuàng)建新的日志文件
dateext 日志做為擴(kuò)展名
include /etc/logrotate.d 子配置文件位置
[root@robin logrotate.d]# vim robin
/tmp/robin.log {
missingok 日志丟失不提示,刪除robin.log后再切日志提示沒有這個(gè)文件
notifempty 空文件不切割
daily 每天
rotate 7 保留7份
dateext 日期格式
create 0777 robin robin 如果后續(xù)日志權(quán)限時(shí)777那當(dāng)前日志權(quán)限必須是777
}
[root@robin logrotate.d]# logrotate -f /etc/logrotate.d/robin
作業(yè):
1.設(shè)置虛擬機(jī)網(wǎng)卡vmnet5為hostonly,并且在宿主機(jī)對(duì)應(yīng)網(wǎng)卡vmnet5的ip地址為 192.168.10.1家夺,以vmnet5的網(wǎng)段搭建dhcp服務(wù)器,虛擬機(jī)獲取地址
2.將虛擬機(jī)的messages日志以u(píng)dp方式傳輸給宿主機(jī)(設(shè)置主機(jī)名)
nginx日志輪轉(zhuǎn)
cat /etc/logrotate.d/nginx
/usr/local/nginx/logs/*.log{
daily
notifempty
dateext
rotate 7
missingok
sharedscripts
postrotate
if [ -f /usr/local/nginx/log/nginx.pid ]
then
kill -USR1 cat /usr/local/nginx/log/nginx.pid
讀取pid號(hào)
fi
endscript
create 0644 root root 切割后,再新建一個(gè)access.log 日志
}
crontab -e
59 23 * * * /usr/sbin/logrotate -f /etc/logrotate.d/nginx