赞
踩
在linux系统上配置nginx代理需要检查nginx是否有stream模块
-
- cd /usr/local/nginx --进入nginx安装目录
- ./sbin/nginx -V --检查是否nginx装有stream模块
我的configure arguments:显示已经装有相应模块
如果没有装的话,进入nginx源代码地址重新安装nginx:
在源代码下面有一个configure文件
运行指令:
## ./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-stream
编译:
## make & make install
在编译之前建议将原先的nginx先保存一份,因为重新编译安装的nginx会覆盖原来的nginx
在安装好模块后编辑nginx配置文件:
## vim /usr/local/nginx/conf/nginx.conf
- stream {
- upstream mysql3306 {
- hash $remote_addr consistent;
- server localhost:3306 weight=5 max_fails=3 fail_timeout=30s;
- }
-
- server {
- listen 16666;
- proxy_connect_timeout 10s;
- proxy_timeout 200s;
- proxy_pass mysql3306;
- }
-
- }
远程通过访问16666端口成功连接到数据库
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。