Apache
iteye_11434
这个作者很懒,什么都没留下…
展开
-
安装Apache
wget http://labs.renren.com/apache-mirror//httpd/httpd-2.2.19.tar.gz gzip -d httpd-2.2.19.tar.gz tar xvf httpd-2.2.19.tar.gzcd httpd-2.2.19.tar.gz./configure --prefix=/usr/local/httpd/ ...原创 2011-08-12 17:24:55 · 104 阅读 · 0 评论 -
configure: error: ...No recognized SSL/TLS toolkit detected
在编译apache的过程中出现如下错误:no SSL-C headers foundconfigure: error: ...No recognized SSL/TLS toolkit detected解决办法:安装openssl-develyum install openssl openssl-devel ...原创 2011-08-15 08:56:40 · 220 阅读 · 0 评论 -
Apache缓存mod_cache配置
Apache 的缓存方式有两种,一种是基于硬盘文件的缓存,由 mod_disk_cache 实现,另一种是使用内存缓存,由 mod_mem_cache 实现,不过它们都是依赖 mod_cache 模块的,mod_cache 模块提供了一些缓存配置的指令供它们使用,而 mod_file_cache 模块是搭配 mod_mem_cache 模块使用的,下面分别进行介绍。1、基于硬盘文件的缓存基...原创 2011-09-13 16:20:44 · 152 阅读 · 0 评论 -
Apache 连接数优化
可见的MPM配置在/usr/local/httpd/conf/extra/httpd-mpm.conf当前httpd的工作模式查看:apachectl -l Compiled in modules: core.c prefork.c http_core.c mod...原创 2011-09-20 09:58:57 · 87 阅读 · 0 评论 -
apache 可以访问mnt目录
方法一: vi /etc/sysconfig/selinuxSELINUX=disabled重启生效,如果不想重启,用命令setenforce 0 方法二: vi /etc/rc.local/usr/sbin/setsebool -P httpd_use_nfs on...原创 2011-10-21 17:28:36 · 178 阅读 · 0 评论 -
Mac配置Apache
查看Apache版本 httpd -v Apache管理 sudo apachectl startsudo apachectl stopsudo apachectl restart 配置用户访问目录 默认访问:/Library/WebServer/Documents/ cd /etc/apache2/userssudo vim u...原创 2016-06-12 09:37:37 · 175 阅读 · 0 评论