安装了CentOS 6.4,在安装系统的时候即安装了apache和mysql数据库,下面说说配置lamp的其他过程。
1、设置开机启动httpd和mysqld服务;
打开shell,切换到管理员账号
依次输入如下命令设置httpd、mysqld开机自启动
chkconfig httpd on
chkconfig mysqld on
2、安装必要的软件
在shell中安装php-mysql软件
yum install php-mysql
3、设置mysql管理员密码
在shell中输入如下命令设置mysql的root密码
mysqladmin -u root password 'newpassword'
4、设置apache配置文件
打开apache配置文件
vi /etc/httpd/conf/httpd.conf“
找到"ServerName www.example.com:80",在其下面添加一行
ServerName localhost:80
找到"AddType application/x-gzip.tgz"这一行,在下面添加:
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
找到"DirectoryIndex index.html",改为:
DirectoryIndex index.php index.html