httpd源码安装的简单介绍
本文目录一览:
- 1、Linux下Apache源码安装后的怎么启动
- 2、apache 2.4.37源码安装 无法加载PNG图片,请问什么原因?
- 3、服务器的apache安装后怎么设置网站源码后面那些
- 4、apache用源代码安装好 还是 apt-get
- 5、Linux编译安装apache httpd2.4 make报错
- 6、源码安装apache,编译的时候出了问题 求解译
Linux下Apache源码安装后的怎么启动
cp /usr/local/apache2/bin/apachectl /etc/init.d/httpd
/etc/init.d/httpd start
apache 2.4.37源码安装 无法加载PNG图片,请问什么原因?
可能是代码中有限制吧httpd源码安装,你自己去找找源代码httpd源码安装,一般不可能出现这种情况只让显示jpg,或者你看看是不是你图片路径不对
服务器的apache安装后怎么设置网站源码后面那些
运行 Terminal,输入命令:复制代码 代码如下:ssh username@ip,然后输入密码。2. 安装 Apache 软件:复制代码 代码如下:yum install httpd3. 设置 Apache 在服务器启动时运行:复制代码 代码如下:chkconfig --levels 235 httpd on4. 在 Apache 配置文件中配置域名:复制代码 代码如下:vi /etc/httpd/conf/httpd.conf,找到 ServerName ,添加“域名:80”,保存并退出。5. 重启 Apache:复制代码 代码如下:service httpd restart6. 浏览器中访问第4步配置的域名,如果出现“Apache 2 Test Page powered by CentOS”的页面,说明配置成功。
apache用源代码安装好 还是 apt-get
在 Linux 系统中httpd源码安装,使用 apt-get 获取软件并安装自动化更高一些。但是有些驱动程序是没有现成httpd源码安装的httpd源码安装,是必须需要自行从网上下载后httpd源码安装,再和系统的内核一起进行编译。如果是从网上下载源代码来进行编译的话httpd源码安装,用户操作起来就得麻烦一些。
Linux编译安装apache httpd2.4 make报错
缺少pcre-8.41.tar.gz包httpd源码安装,找一个pcre和httpd源码安装你httpd对应得版本安装
./configure --prefix=/usr/local/pcre
make make install
安装好httpd源码安装了之后httpd源码安装,加上参数--with-pcre=/usr/local/pcre 如下所示
./configure --prefix=/usr/local/apache2 --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util/ --with-pcre=/usr/local/pcre
源码安装apache,编译的时候出了问题 求解译
httpd源码安装你的apache肯定没有加载php的模块,编译php时需要用--with-apxs2指定apxs的位置,如果有mysql,需要用--with-mysql指定mysql的安装位置,写个全的给你吧httpd源码安装:
编译apache前你这样:
./configure --prefix=/etc/httpd --enable-so --enable-rewrite --enable-module-so --enable-ssl --with-ssl=/usr/share/ssl
编译php前你这样:
./configure --prefix=/usr/local/php --with-apxs2=/etc/httpd/bin/apxs --with-mysql=/usr/local/mysql --with-config-file-path=/usr/local/lib --enable-track-vars --with-xml
然后在/etc/httpd/conf/httpd.conf里加入
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
AddType application/x-httpd-php .php3
这样你启动httpd源码安装了apache后,就可以直接支持php和mysqlhttpd源码安装了。
以上的方法适合于apache2.0x和php4.x.x。
我就是这样配置和编译的。。。