码迷,mamicode.com
首页 > 其他好文 > 详细

Centos下LAMP环境搭建

时间:2014-12-30 19:18:53      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:php apache mysql bugfree

判断是否安装:rpm -qa|grep apache/php/mysql

 

  • 安装APACHE

Yum –y installhttpd

默认web根目录为/var/www/html

启动:service httpd start

备注:Apache启动之后会提示错误: 
      
正在启动 httpd:httpd:Could not reliably determine the server‘s fully qualif domain name, using ::1 forServerName       
    
解决办法: 
      vi/etc/httpd/conf/httpd.conf   #
编辑 
      
找到  #ServerName www.example.com:80 
      
修改为 ServerNamelocalhost:80

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

  • 安装Mysql

Yum –y install mysql mysql-server

配置文件位置:/etc/my.cnf

启动:service mysqld start

进入:mysql –uroot –p   //默认密码为空

修改密码:mysqladmin –u root –p passwordnewpassword

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

  • 安装php

yuminstall php php-cli  php-fpm php-gd php-imap php-ldap php-mbstringphp-snmp php-xml  php-mysql

安装完后须重启Apache       service httpdrestart

  • 设置为开机启动

chkconfig httpd on #Apache设为开机启动

chkconfig mysqld on#mysql设为开机启动

  • bugfree安装使用说明

下载bugfree文件夹到web根目录,并对其进行授权,然后在浏览器上浏览,若发现无BugFile文件,则需在web目录下新建一个并授权。

修改数据库密码:在bugfree/Include文件夹下的Config.ini.php找到$_CFG[‘UserDB‘][‘Password‘]= ‘‘;中输入数据库的密码””


Centos下LAMP环境搭建

标签:php apache mysql bugfree

原文地址:http://antic.blog.51cto.com/6493528/1597839

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!