Yapi部署(二)

在上一篇的文章介绍了如何在linux(服务器)上部署yapi
文章地址:https://blog.csdn.net/baidu_36821021/article/details/86110411

那么,本文就介绍如何让外界访问到服务器上的应用。

一、安装nginx

1、准备环境

yum -y install gcc gcc-c++ autoconf automake make
yum -y install zlib zlib-devel openssl openssl--devel pcre pcre-devel 

2、下载安装包

wget http://nginx.org/download/nginx-1.12.0.tar.gz

3、开始安装

tar zxvf nginx-1.12.0.tar.gz 
cd nginx-1.12.0
./configure --prefix=/usr/local/nginx
make
make install

–prefix=path 定义一个目录,存放服务器上的文件 ,也就是nginx的安装目录。默认使用 /usr/local/nginx
4、启动

cd /usr/local/nginx/sbin
./nginx

在浏览器上输入:http://localhost,看到页面显示

Welcome to nginx!

证明nginx启动成功了

5、配置访问地址

vim /usr/local/nginx/conf/nginx.conf

Yapi部署(二)_第1张图片

6、开机自动启动Nginx服务

vim /etc/init.d/nginx

复制内容如下:

#!/bin/sh
#
# nginx - this script starts and stops the nginx daemon
#
# chkconfig:   - 85 15
# description:  NGINX is an HTTP(S) server, HTTP(S) reverse \
#               proxy and IMAP/POP3 proxy server
# processname: nginx
# config:      /etc/nginx/nginx.conf
# config:      /etc/sysconfig/nginx
# pidfile:     /var/run/nginx.pid
# Source function library.
. /etc/rc.d/init.d/functions
# Source networking configuration.
. /etc/sysconfig/network
# Check that networking is up.
[ "$NETWORKING" = "no" ] && exit 0
nginx="/application/nginx/sbin/nginx"
prog=$(basename $nginx)
NGINX_CONF_FILE="/application/nginx/conf/nginx.conf"
[ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginx
lockfile=/var/lock/subsys/nginx
make_dirs() {
   # make required directories
   user=`$nginx -V 2>&1 | grep "configure arguments:" | sed 's/[^*]*--user=\([^ ]*\).*/\1/g' -`
   if [ -z "`grep $user /etc/passwd`" ]; then
       useradd -M -s /bin/nologin $user
   fi
   options=`$nginx -V 2>&1 | grep 'configure arguments:'`
   for opt in $options; do
       if [ `echo $opt | grep '.*-temp-path'` ]; then
           value=`echo $opt | cut -d "=" -f 2`
           if [ ! -d "$value" ]; then
               # echo "creating" $value
               mkdir -p $value && chown -R $user $value
           fi
       fi
   done
}
start() {
    [ -x $nginx ] || exit 5
    [ -f $NGINX_CONF_FILE ] || exit 6
    make_dirs
    echo -n $"Starting $prog: "
    daemon $nginx -c $NGINX_CONF_FILE
    retval=$?
    echo
    [ $retval -eq 0 ] && touch $lockfile
    return $retval
}
stop() {
    echo -n $"Stopping $prog: "
    killproc $prog -QUIT
    retval=$?
    echo
    [ $retval -eq 0 ] && rm -f $lockfile
    return $retval
}
restart() {
    configtest || return $?
    stop
    sleep 1
    start
}
reload() {
    configtest || return $?
    echo -n $"Reloading $prog: "
    killproc $nginx -HUP
    RETVAL=$?
    echo
}
force_reload() {
    restart
}
configtest() {
  $nginx -t -c $NGINX_CONF_FILE
}
rh_status() {
    status $prog
}
rh_status_q() {
    rh_status >/dev/null 2>&1
}
case "$1" in
    start)
        rh_status_q && exit 0
        $1
        ;;
    stop)
        rh_status_q || exit 0
        $1
        ;;
    restart|configtest)
        $1
        ;;
    reload)
        rh_status_q || exit 7
        $1
        ;;
    force-reload)
        force_reload
        ;;
    status)
        rh_status
        ;;
    condrestart|try-restart)
        rh_status_q || exit 0
            ;;
    *)
        echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"
        exit 2
esac
chkconfig nginx on

如果出现权限不足,可以通过下面命令修改权限

chmod 777 nginx #添加读、写、执行权限。

附录:

service nginx status    #查看nginx运行状态。
service nginx start     #运行nginx。
service nginx stop      #停止nginx。
service nginx restart   #重启nginx服务。

二、配置防火墙对指定端口开放

/sbin/iptables -I INPUT -p tcp --dport 3000 -j ACCEPT   //写入修改
/etc/init.d/iptables save                               //保存修改
service iptables restart                                //重启防火墙,修改生效

附录:

1、关闭指定端口
/sbin/iptables -I INPUT -p tcp --dport 端口号 -j DROP       //写入
/etc/init.d/iptables save                                  //保存
service iptables restart    	                           //重启防火墙,修改生效
2、查看端口状态
/etc/init.d/iptables status
3、防火墙的基本操作命令:
 1)查询防火墙状态:service iptables status
 2)停止防火墙:service iptables stop
 3)启动防火墙:service iptables start
 4)重启防火墙:service iptables restart
 5)永久关闭防火墙:chkconfig iptables off
 6)永久关闭后启用:chkconfig iptables on

三、重要的一刻:效果展示

在windows的浏览器上输入"ip地址:3000"访问服务器上的yapi


Yapi部署(二)_第2张图片

Yeah!!! …成功了

你可能感兴趣的:(Yapi)