Linux下Nginx + Resin 的搭建

 

nginx的安装
对于现在流行的Nginx + Resin,其性能大家都有目共睹。
首先,安装Nginx
可以参数Nginx的安装文章:http://blog.csdn.net/vebasan/archive/2010/02/26/5328494.aspx
如果在安装Nginx的时候提示有问题,可以参考:http://blog.csdn.net/vebasan/archive/2010/02/26/5328545.aspx
有关Nginx,pcre,openssl相关的包文件,可以通过google进行查找下载,并上传到服务器上。

接着,安装Resin
tar -xvf resin-3.1.9.tar.gz
接着,将其移动到/usr/local/resin下面
mv resin-3.1.9 /usr/local/resin

接着进入resin的目录,对其进行配置安装
cd /usr/local/resin
./configure
make
make install


接着,我们需要将nginx配置为系统的服务
vi /etc/rc.d/init.d/nginx

在vi环境下,贴下以下内容:

 程序代码
#!/bin/bash
# nginx Startup script for the Nginx HTTP Server
# this script create it by gcec at 2009.10.22.
# it is v.0.0.1 version.
# if you find any errors on this scripts,please contact gcec cyz.
# and send mail to support at gcec dot cc.
#
# chkconfig: - 85 15
# description: Nginx is a high-performance web and proxy server.
#              It has a lot of features, but it's not for everyone.
# processname: nginx
# pidfile: /var/run/nginx.pid
# config: /usr/local/nginx/conf/nginx.conf

nginxd=/usr/local/nginx/sbin/nginx
nginx_config=/usr/local/nginx/conf/nginx.conf
nginx_pid=/var/run/nginx.pid

RETVAL=0
prog="nginx"

# Source function library.
. /etc/rc.d/init.d/functions

# Source networking configuration.
. /etc/sysconfig/network

# Check that networking is up.
[ ${NETWORKING} = "no" ] && exit 0

[ -x $nginxd ] || exit 0


# Start nginx daemons functions.
start() {

if [ -e $nginx_pid ];then
   echo "nginx already running...."
   exit 1
fi

   echo -n $"Starting $prog: "
   daemon $nginxd -c ${nginx_config}
   RETVAL=$?
   echo
   [ $RETVAL = 0 ] && touch /var/lock/subsys/nginx
   return $RETVAL

}


# Stop nginx daemons functions.
stop() {
        echo -n $"Stopping $prog: "
        killproc $nginxd
        RETVAL=$?
        echo
        [ $RETVAL = 0 ] && rm -f /var/lock/subsys/nginx /var/run/nginx.pid
}


# reload nginx service functions.
reload() {

    echo -n $"Reloading $prog: "
    #kill -HUP `cat ${nginx_pid}`
    killproc $nginxd -HUP
    RETVAL=$?
    echo

}

# See how we were called.
case "$1" in
start)
        start
        ;;

stop)
        stop
        ;;

reload)
        reload
        ;;

restart)
        stop
        start
        ;;

status)
        status $prog
        RETVAL=$?
        ;;
*)
        echo $"Usage: $prog {start|stop|restart|reload|status|help}"
        exit 1
esac

exit $RETVAL



退出vi
接着,让nginx有可执行的权限
chmod +x nginx

再接着,将nginx加入到服务当中
chkconfig --add nginx
配置nginx的运行级别,让其可以在系统启动的时候跟着启动
chkconfig --level 35 nginx on

接着,我们可以通过以下命令来操作nginx
启动:service nginx start
关闭:service nginx stop
重起:service nginx restart

将resin配置为系统服务:
进入$RESIN_HOME
进入contrib目录,将init.resin文件copy到/etc/rc.d/init.d/resin
cp init.resin /etc/rc.d/init.d/resin
给resin可执行的权限
chmod +x /etc/rc.d/init.d/resin
将resin加入到系统服务当中
chkconfig --add resin
将resin设置为自动启动
chkconfig --level 35 resin on

使用nginx的proxy功能,将请求转发给resin
修改nginx的配置文件nginx.conf

 程序代码
server {
        listen       80 ;
        server_name  www .suneca .com ;

        error_page   500 502 503 504   /50x . html ;
        location = /50x . html {
            root   html ;
         }


        location / {
             access_log on ;
             proxy_pass http : //127.0.0.1:8080;
             proxy_set_header X-Real-IP $remote_addr;                                                            
             proxy_set_header Host $host;                                                                        
             proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;                                        
                                                                                                                  
             client_max_body_size    10m;                                                                        
             client_body_buffer_size 128k;                                                                        
        }      
}        



重起nginx
如果通过访问http://youdomain/可以访问得到resin经典的欢迎页面,那说明成功了;
重起一下服务器,检查一下是否nginx跟resin可以自动启动;

附件提供了nginx的启动脚本! 点击下载此文件

 

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值