LNMP+zabbix5.0编译安装

# lumia98@vip.qq.com
# zabbix5.0编译安装及脚本
# 一、安装LNMP环境(CentOS7)
0、前期准备
[root@zabbix ~]# yum -y install wget vim lsof lrzsz pcre-devel zlib-devel make gd-devel libjpeg-devel libpng-devel libxml2-devel bzip2-devel libcurl-devel libmcrypt libmcrypt-devel mcrypt mhash net-snmp-devel
[root@zabbix ~]# useradd -s /sbin/nologin cents  # 用于NGINX
[root@zabbix ~]# useradd -s /sbin/nologin mysql  # 用于MySQL
[root@zabbix ~]# useradd -s /sbin/nologin zabbix # 用于zabbix
[root@zabbix ~]# mkdir /opt/app

1、Nginx编译

[root@zabbix ~]# cd nginx-1.18
[root@zabbix ~]# ./configure --prefix=/opt/app/nginx-1.18 \
--user=cents \
--group=cents \
--with-file-aio \
--with-http_ssl_module \
--with-http_v2_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_xslt_module=dynamic \
--with-http_image_filter_module=dynamic \
--with-http_geoip_module=dynamic \
--with-http_sub_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_random_index_module \
--with-http_secure_link_module \
--with-http_stub_status_module \
--with-pcre=/opt/soft/pcre-8.44  \
--with-pcre-jit \
--with-openssl=/opt/soft/openssl-1.1.1h

[root@zabbix ~]# make -j8
[root@zabbix ~]# make install
1.1 Nginx配置
[root@zabbix ~]# more /opt/app/nginx-1.18/conf/nginx.conf|grep -v '^$\|#'

user  cents;
worker_processes  1;
error_log  logs/error.log;
pid        logs/nginx.pid;

events {
   
    worker_connections  1024;
}

http {
   
    include       mime.types;
    default_type  application/octet-stream;
    sendfile        on;
    keepalive_timeout  65;
    gzip  on;
    
    server {
   
        listen       80;
        server_name  localhost;

        location / {
   
            root   html;
            index  index.php index.html;
        }

        location ~ \.php$ {
   
            root           html;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            include        fastcgi_params;
        
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值