码迷,mamicode.com
首页 >  
搜索关键字:nginx+apache    ( 283个结果
烂泥:rsync配置文件详解
本文由秀依林枫提供友情赞助,首发于烂泥行天下。 对于rsync服务器来说,最重要和复杂的就是它的配置了。rsync服务器的配置文件为/etc/rsyncd.conf,其控制认证、访问、日志记录等等。 注意:rsync在安装完毕后,不想mysql、nginx、apache那样会给你一个,该配置文件的模...
分类:其他好文   时间:2015-01-15 12:46:10    阅读次数:240
为什么nginx性能如此出色?
nginx的高性能在业界已经是众人皆知了,性能究竟有多高?官方测试Nginx能够支撑5万并发连接,在实际生产环境中可支撑2~4万并发的连接数是没有啥问题的。根据实战Nginx书中描述,同等硬件环境下,Nginx的处理能力相当于Apache的5~10倍。而这么高的性能,与其架构师分不开的。...
分类:其他好文   时间:2015-01-14 16:52:45    阅读次数:176
Nginx+Apache+PHP超时时间设定
今天在做一个数据导入,超时时间一直设置不对,经过几轮查询以后,才知道需要做如下多环节的配置。Nginx需要配置如下超时配置 fastcgi_connect_timeout 300; fastcgi_send_timeout 300; fastcgi_read_timeout 300;如果使用的是Nginx的代理服务,需要添加如下配置 location / { p...
分类:Web程序   时间:2015-01-08 13:28:52    阅读次数:161
查看PHP/Mysql/Nginx/Apache的编译参数
1、查看php的编译参数/usr/local/php/bin/php-config--configure-options或者/usr/local/php/bin/php-r"phpinfo();"|grep-iconfigure或者/usr/local/php/bin/php-i|grepconfigure2、查看mysql的编译参数cat/usr/local/mysql/bin/mysqlbug|grepconfigure3、查看Nginx的编译参数/..
分类:数据库   时间:2014-11-27 18:46:14    阅读次数:176
apache和nginx
虽然nginx使用较少还是写写文章,记录下nginx是异步非阻塞,apache是阻塞的.apache动态页面比nginx好.由于nginx的高并发性(使用epoll模型),所以出来静态页面性能好.nginx做代理apache做后端(处理动态页面)
分类:Web程序   时间:2014-11-18 17:24:09    阅读次数:191
linux并发连接数查看
1、查看Webserver(Nginx Apache)的并发请求数及其TCP连接状态:netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}'netstat -n|grep ^tcp|awk '{print $NF}'|...
分类:系统相关   时间:2014-11-13 10:35:38    阅读次数:387
linux并发连接数查看
1、查看Web服务器(Nginx Apache)的并发请求数及其TCP连接状态: netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}' netstat -n|grep ^tcp|awk '{print $NF}'|sort -nr|uniq -c 或者: netstat -n | awk '/^tcp/ {++state[$NF]} END {for(key in state) print key,"t",stat...
分类:系统相关   时间:2014-11-10 15:33:08    阅读次数:227
Linux下查看nginx,apache,mysql,php的编译参数
查看apache版本/usr/sbin/apachectl-vhttpd-v安装目录,使用apachectl-v查看mysql版本mysql–help|grepDistribmysql-Vmysql/bin/mysql-uroot-p-e“selectversion()”/binmysqladminversion查看linux版本lsb_release-ahead-n1/etc/issuecat/etc/redhat-release(redhat)rpm-qre..
分类:数据库   时间:2014-11-05 15:01:54    阅读次数:175
Nginx vs Apache
原文地址:https://anturis.com/blog/nginx-vs-apache/ Nginx vs Apache What is the Nginx web and proxy server and how does it compare to Apache? Should you use one of these servers or both? Here we explore ...
分类:Web程序   时间:2014-11-03 16:25:49    阅读次数:299
nginx做反向代理+apache
先上个规划图,自己随便画的,大家也随便看看192.168.1.119为nginx做反向代理并处理静态页面,apache处理动态页面,nfs共享网站家目录,svn代码管理。192.168.101为apache处理动态页面,挂载192.168.1.119的共享目录。192.168.1.96为mysql数据库,允许两台web服务的连接权限。..
分类:Web程序   时间:2014-10-31 19:14:13    阅读次数:314
283条   上一页 1 ... 24 25 26 27 28 29 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!