Nginx 최적화 로그 분할
4170 단어 Nginx 로그 분할
설치 설정 Nginx
로 컬 에 원 격 소스 패 키 지 를 마 운 트 합 니 다.
mount.cifs //192.168.100.10/LNMP-C7 /mnt // /mnt
압축 해제 소스 코드 를 / opt 디 렉 터 리 에 패키지 합 니 다.
[root@localhost ~]# cd /abc //
[root@localhost abc]# ls
Discuz_X3.4_SC_UTF8.zip nginx-1.12.2.tar.gz
mysql-boost-5.7.20.tar.gz php-7.1.10.tar.gz
[root@localhost abc]# tar zxvf nginx-1.12.2.tar.gz -C /opt // Nginx /opt
[root@localhost abc]# cd /opt/ //
[root@localhost opt]# ls
nginx-1.12.2 rh
컴 파일 에 필요 한 환경 구성 요소 패키지 설치
[root@localhost opt]# yum -y install \
gcc \ //c
gcc-c++ \ //c++
pcre-devel \ //pcre
zlib-devel //
nginx 라 는 사용 자 를 만 들 고 Nginx 를 컴 파일 합 니 다.
[root@localhost opt]# useradd -M -s /sbin/nologin nginx // ,
[root@localhost opt]# cd nginx-1.12.2/ // nginx
[root@localhost nginx-1.12.2]# ./configure \ // nginx
> --prefix=/usr/local/nginx \ //
> --user=nginx \ //
> --group=nginx \ //
> --with-http_stub_status_module //
컴 파일 및 설치
[root@localhost nginx-1.12.0]# make && make install //
Nginx 관리 스 크 립 트 만 들 기
[root@localhost nginx]# ln -s /usr/local/nginx/sbin/nginx /usr/local/sbin/
// [root@nginx nginx-1.12.2]# vim /etc/init.d/nginx //
#!/bin/bash
# chkconfig: - 99 20
# description: Nginx Service Control Script
PROG="/usr/local/nginx/sbin/nginx"
PIDF="/usr/local/nginx/logs/nginx.pid"
case "$1" in
start)
$PROG
;;
stop)
kill -s QUIT $(cat $PIDF)
;;
restart)
$0 stop
$0 start
;;
reload)
kill -s HUP $(cat $PIDF)
;;
*)
echo "Usage: $0 {start|stop|restart|reload}"
exit 1
esac
exit 0
[root@nginx nginx-1.12.2]# chmod +x /etc/init.d/nginx //
[root@nginx nginx-1.12.2]# chkconfig --add nginx // service
[root@nginx nginx-1.12.2]# yum install elinks -y //
[root@nginx nginx-1.12.2]# service nginx start // Nginx
[root@nginx nginx-1.12.2]# netstat -ntap | grep 80
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 42028/nginx: master
[root@nginx nginx-1.12.2]# systemctl stop firewalld.service //
[root@nginx nginx-1.12.2]# setenforce 0 //
[root@nginx nginx-1.12.2]# elinks http://192.168.131.133/
스 크 립 트 를 작성 하여 로그 분할 하기
[root@localhost ~]# vim fenge.sh //
#!/bin/bash
#Filename:fenge.sh
d=$(date -d "-1 day" "+%Y%m%d") //
logs_path="/var/log/nginx" //
pid_path="/usr/local/nginx/logs/nginx.pid" //pid
[ -d $logs_path ] || mkdir -p $logs_path //
mv /usr/local/nginx/logs/access.log ${logs_path}/test.com-access.log-$d
//
kill -USR1 $(cat $pid_path) // pid
find $logs_path -mtime +30 | xargs rm -rf // 30
[root@localhost ~]# chmod +x fenge.sh //
[root@localhost ~]# ./fenge.sh //