wget http://mirrors.hust.edu.cn/apache/httpd/httpd-2.4.46.tar.bz2
tar -jxf httpd-2.4.46.tar.bz2
cd httpd-2.4.46/
yum -y install apr apr-devel apr-util apr-util-devel
./configure --p...
查看版本/application/apache/bin/apachectl -V/application/nginx/sbin/nginx -v/application/php/bin/php -vmysql直接登陆就可以看到查看编译的参数/application/nginx/sbin/nginx -V #用大V/application/apache/build/config.nicegrep CONFIGURE_LINE /application/mysql/b...
httpd-2.2.27.tar.gz安装cd /home/shnne/tools/
wget ....httpd-2.2.27.tar.gz
tar xf httpd-2.2.27.tar.gz
cd httpd-2.2.27可以通过查看INSTALL 和README文件来查看安装方式。编译以下内容./configure \
--prefix=/application/apache2.2.27 \...
1,服务器端apache的配置文件路径:/var/www/conf/httpd.conf2,apache里面站点配置方法:使用vi /var/www/conf/httpd.conf进入apache配置文件,修改下面的配置:<VirtualHost *:80>ServerAdmin webmaster@test.com ---服务器管理员邮箱DocumentRoot /home/test/htdocs ---网页文件对应的主目录ServerName tes...