linux服务器上安装nginx,部署多项目

Nginx安装

Nginx下载

官网下载:http://nginx.org/en/download.html
或者直接在linux执行命令:wget http://nginx.org/download/nginx-1.12.2.tar.gz
这里下载的版本是1.12.2

安装步骤
# 安装依赖
yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel
# 解压缩
tar -zxvf linux-nginx-1.12.2.tar.gz
cd nginx-1.12.2/
# 执行配置
./configure
# 编译安装(默认安装在/usr/local/nginx)
make
make install

防火墙配置
nginx默认监听80端口,如果未关闭防火墙需要配置iptables规则开放80端口(以centos6为例)。
编辑配置文件:vim /etc/sysconfig/iptables
在文件中间添加iptables规则
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
重启防火墙:service iptables restart
或者关闭iptables规则:iptables -F && iptables -t nat -F

Nginx验证

nginx主配置文件:/usr/local/nginx/conf/nginx.conf
nginx日志文件:/usr/local/nginx/logs/access.log
启动Nginx:/usr/local/nginx/sbin/nginx
然后直接访问ip地址,比如:http://192.168.0.110/,如果能看到如下Nginx主页说明安装ok。

Nginx常用命令
查找安装路径:
whereis nginx
进入sbin目录,可以看到有一个可执行文件nginx,直接./执行就OK了。

测试配置文件:{Nginx}/sbin/nginx
停止命令:{Nginx}/sbin/nginx -s reload
查看进程命令:ps -ef | grep nginx
平滑重启:kill -HUP [Nginx主进程号(即ps命令查到的PID)]

【部署问题】解决Nginx: [error] open() "/usr/local/Nginx/logs/Nginx.pid" failed(2:No such file or directory)

问题:环境问题

image

解决方法:

/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

[Nginx 配置多站点vhost]

假设你想在Linux Nginx中用不同的域名访问不同的目录,这时就要配置多个vhost,具体配置如下,假设网站根目录设定在/var/www/

1、在/var/www/下新建两个目录

/var/www/ushark.net
/var/www/ushark.wang

2、编辑/etc/nginx/nginx.conf

http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

    #gzip  on;

    include /etc/nginx/conf.d/*.conf;   #主要是加入此行,如有则忽略
}

3、在/etc/nginx/conf.d下新建两个conf文件

/etc/nginx/conf.d/ushark.net.conf
/etc/nginx/conf.d/ushark.wang.conf

4、复制如下配置信息到两个文件中,只要修改红色部分内容  !!! server_name与root保持一致即目录和域名一一对应 !!!

server {
    listen       80;
    server_name   www.ushark.net;

    #charset koi8-r;
    #access_log  /var/log/nginx/host.access.log  main;
    root   /var/www/ushark.net/;
    if (!-e $request_filename){    # rewrite可根据网站需要增删
            rewrite ^/(.*) /index.php last;  
    }  

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

    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /var/www/ushark.net/;
    }

    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~* \.php$ {
        fastcgi_index   index.php;
        fastcgi_pass    127.0.0.1:9000;
        include           fastcgi_params;
        fastcgi_param   SCRIPT_FILENAME    $document_root$fastcgi_script_name;
        fastcgi_param   SCRIPT_NAME        $fastcgi_script_name;
    }

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}
}

5、重启Nginx

systemctl restart nginx

6、 编辑/etc/hosts  !!! 核心步骤 !!!

[root@bogon ~]# vi 127.0.0.1        localhost.localdomain localhost
::1              localhost6.localdomain6 localhost6
127.0.0.1        www.ushark.net
127.0.0.1        www.ushark.wang

3.因为这里使用的是虚拟机,所以需要配置host文件,注意host配置的应该是我们使用的客户端也就是浏览器所在的主机host,这里使用的是windows系统访问,所以应该在windows下配置host,位置:C://Windows/System32/drivers/etc
编辑hosts文件,在文件末尾添加内容(虚拟机ip + 需要映射的域名):
192.168.0.110 http://www.silly.com
配置好了host后,打开cmd,执行ping命令验证是否生效。

image.png

  1. 重启Nginx:/usr/local/nginx/sbin/nginx -s reload
    然后启动tomcat:${tomcat}/bin/startup.sh
    5.访问域名:http://www.silly.com/,就可以访问到tomcat的主页了。
    image.png

总结:整个过程就是当我们访问域名时,首先根据host配置映射到了一个IP地址,也就是访问到了虚拟机,不加端口默认访问的就是80端口,也就是访问到了虚拟机的Nginx,在Nginx配置中对该域名进行了反向代理,代理到了本机的8080端口服务,所以最终就访问到了虚拟机的Tomcat服务器。

更新
1,查看指定端口进程
netstat -lnp|grep 80 # 查看占用80端口的进程信息,主要看PID
ps [pid] #根据PID查看进程的详细信息;
kill -9 [PID] # 根据PID杀死进程

2,重新启动jar包
java -jar spring-boot-base-0.0.2-SNAPSHOT.jar

你可能感兴趣的:(linux服务器上安装nginx,部署多项目)