我在linux下安装httpd-2.2.14 编译后 安装在/home/jeeyu/apache 路径下,目前该路径下已经有apache的文件 但不知如何启动 service httpd start 不能启动 在 /etc/rc.d/init.d 找不到httpd 所以我不知道如何判断apache是否已经安装成功 在google上找说 执行 rpm -qa|grep httpd 但是输入命令后。系统没有任何结果返回,新人求教,高人留步
by ajthirteen - Linux新手园地 - 2010-02-26 09:45:28 阅读(1351) 回复(7)
本帖最后由 leej09 于 2011-03-25 17:24 编辑 系统环境 rhel 源码编译安装httpd2.2.17 我要做的是配置lamp环境 {:2_167:} 在给apache ./configure 配置是遇到点麻烦 {:2_180:} ① 看到手册上有那么多可以配置的选项 不知道改选那几个? {:2_177:} ② 还有就是 如何试着web目录是不是在 配置的时候就设置 ③ 看到一些的./configure 配置选项有一个 --with-mysql='mysqldirname' 不知道在2.2.17中有没有必要 ...
[hide]http://linux.chinaunix.net/book/server/Apache/Linux+apache+phpforDM安装.pdf [/hide]
shell>tar -zxvf httpd-2.2.4.tar.gz shell>cd httpd-2.2.4 shell>./configure --prefix=/usr/local/apache --enable-module=most --enable-rewrite --enable-shared=max --enable-so shell>make shell>make install shell>make clean shell>cd /usr/local/apache shell>bin/apachectl start 启动web服务 shell>bin/apachectl stop 停止web服务 shell>cp bin/apachectl /etc/init.d/httpd shell>/etc/init.d/httpd restart a...
环境是 操作系统:Red Hat Enterprise Linux Server release 5.3 (32位) apache版本:httpd-2.2.14 subversion版本:subversion-1.6.6 需要的安装包:(目前是最新的) subversion-1.6.6.tar.gz 地址:http://subversion.tigris.org/downloads/subversion-1.6.6.tar.gz subversion-deps-1.6.6.tar.gz 地址:http://subversion.tigris.org/downloads/subversion-deps-1.6.6.tar.gz httpd-2.2.14.tar.gz 地址:http://apache.etoa...
到www.mysql.com , www.apache.org , www.php.net下载mysql,apache,php的最新源码包 mysql-standard-5.0.1-alpha-snapshot-pc-linux-i686.tar.gz httpd-2.0.52.tar.gz php-5.0.2.tar.gz 我们先来安装mysql cp mysql-standard-5.0.1-alpha-snapshot-pc-linux-i686.tar.gz /usr/local/ tar -zxvf mysql-standard-5.0.1-alpha-snapshot-pc-linux-i686.tar.gz cd mysql-standard-5.0.1-alpha-pc-linux-i686/ emacs INSTALL-BINAR...
[color="#0000ff"]本人最近得到兄弟给的一份 安装linux+apache+mysql+php 的文档,十分高兴希望大家一起学习一下! 1安装linux5 (1)安装时,不安装任何服务,但是要安装开发库 (2)在安装到选择安装级别设置时选择禁止 2安装apache 安装的版本为httpd-2.2.4.tar (1)解压缩 tar zxvf httpd-2.2.4.tar cd httpd-2.2.4 (2)配置apache安装信息 ./configure --prefix=/...
Apache安装 现在apache的版本已经到了2.0,此安装介绍就以2.0为参照 Apache在linux机器上安装 到apache官方网站或国内的linux站点去下载把它拷贝到/tmp下面 打开终端: cd /tmp tar -zxvf httpd.XXX.tar.gz cd httpd.XXX/ ./configure --prefix=/你想要安装的目录(本文约定:/usr/local/apache2) make make install 安装完成,/usr/local/apache2目录无需创建,安装会自动生成 运行apache /usr/local/apache2/bin/apachectl start 在wi...
本人最近得到兄弟给的一份 安装linux+apache+mysql+php 的文档,十分高兴希望大家一起学习一下! 1安装linux5 (1)安装时,不安装任何服务,但是要安装开发库 (2)在安装到选择安装级别设置时选择禁止 2安装apache 安装的版本为httpd-2.2.4.tar (1)解压缩 tar zxvf httpd-2.2.4.tar cd httpd-2.2.4 (2)配置apache安装信息 ./configure --prefix=/usr/local/apache2...