博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux下配置php Apache mysql
阅读量:6453 次
发布时间:2019-06-23

本文共 2134 字,大约阅读时间需要 7 分钟。

一 Apache部分

里面是纠正了原文的一些小错误,即可正常安装

1、su 命令

2、安装apr-1.3.5.tar.gz
# tar zxvf apr-1.3.5.tar.gz

# cd apr-1.3.5

# ./configure

出现错误
no acceptable C compiler found in $PATH
---------------------------------------------
解决方案,没有按照GCC套件
切换到root权限: su
输入密码后即为root权限,然后保证电脑能联网,输入:
yum install  gcc

#make

#make install

3、
安装apr-util-1.3.7.tar.gz
# tar zxvf apr-util-1.3.7.tar.gz

# cd apr-util-1.3.7

# . /configure --with-apr=/usr/local/apr

./configure --with-apr=/usr/local/apr(这个是修正之后的)

 

# make

# make install

4
安装httpd-2.2.11.tar.gz
# tar zxvf httpd-2.2.11.tar.gz

# ./configure --prefix=/usr/local/apache2 --enable-dav --enable-modules=so --enable-maintainer-mode --enable-rewrite

--with-apr=/usr/local/apr/bin/apr-1-config --with-apr-util=/usr/local/apr/bin/apu-1-config

【bash: ./configure: 没有那个文件或目录

--------------------------------------------------

解决方案: chmod a+x configure 修改一下这个文件的权限即可】

# make

# make install

 

启动Apache服务:

# /usr/local/apache2/bin/apachectl start

apache启动时
出现错误 httpd: apr_sockaddr_info_get() failed for
httpd: apr_sockaddr_info_get() failed for VM_74_204_centos
httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
解决方案
--------------------------------------------
 在Apache的安装目录下的conf文件修改httpd.conf如下
   (1) ServerName localhost:80                       

   或者在 /etc/hosts 中填入自己的主机名称 bogon,如下:

   (2)127.0.0.1 bogon
---------------------------------------------
并且编辑如下:
 编辑 /usr/local/apache2/conf/httpd.conf 文件       
  找到:    AddType  application/x-compress .Z    AddType application/x-gzip .gz .tgz  
 在后面添加:
   AddType application/x-httpd-php .php(使Apcche支持PHP)    A
ddType application/x-httpd-php-source .php5     
 找到:    <IfModule dir_module>    DirectoryIndex index.html    </IfModule> 
  添加:    <IfModule dir_module>    DirectoryIndex index.html index.php    </IfModule>      
 找到:    #ServerName   
 修改为:    ServerName 127.0.0.1:80或者ServerName localhost:80   
记得要去掉前面的“#”     

用浏览器查看,得到It works!

说明apache已经配置成功了。

---------------------------------------------

参考文章:

 

 

出现错误:libphp5.so没有编译成功

------------------------------

解决方案:在Apache的安装目录下http.conf配置文件下

增加这一行 LoadModule php5_module       /usr/local/apache2/modules/libphp5.so

 

转载于:https://www.cnblogs.com/bluewelkin/p/3894647.html

你可能感兴趣的文章
Redis慢查询,redis-cli,redis-benchmark,info
查看>>
Virtualbox 虚拟机网络不通
查看>>
java概念基础笔记整理
查看>>
self parent $this关键字分析--PHP
查看>>
CC_UNUSED_PARAM 宏含义的解释
查看>>
leetcode124二叉树最大路径和
查看>>
AngularJS笔记整理 内置指令与自定义指令
查看>>
shell与正则表达式
查看>>
第三篇:白话tornado源码之请求来了
查看>>
表示数值的字符串
查看>>
JQUERY AJAX请求
查看>>
html css 伪样式
查看>>
超级账本Fabric区块链用弹珠游戏Marbles 部署
查看>>
整理Java基础知识--选择与判断
查看>>
Linux查看程序端口占用情况
查看>>
jar包冲突案例分析.md
查看>>
控制圈复杂度的9种重构技术总结
查看>>
当软件项目全部能靠自己搞定了,也能接几万元的软件项目时,未必适合创业...
查看>>
数据分析--数字找朋友
查看>>
推荐好用的开源库或软件
查看>>