知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

在CentOS5.2系统上为PHP5安装Lighttpd和MySQL

发布时间:2014-09-05 17:18:59作者:知识屋

Lighttpd是一个安全,快速,符合标准,灵活的并且针对复杂的网络环境做了很多优化的web服务软件。这篇文章描述了如何在Centos5.2系统上为HPH5安装Lighttpd和MySQL支持。

1. 安装 MySQL

[root@server ~]# yum -y install mysql mysql-server

 

2. 为MySQL设置系统开机启动服务

[root@server ~]# chkconfig --levels 235 mysqld on

[root@server ~]# /etc/init.d/mysqld start


3. 设置MySQL根用户密码

[root@server ~]# mysqladmin -u root password server123


4. 检测MySQL网络服务是否可用

[root@server ~]# netstat -tap | grep mysql

tcp 0 0 *:mysql *:* LISTEN 19852/mysqld


5. 设置MySQL本机用户密码

[root@server ~]# mysqladmin -h localhost -u root password server123

6. 安装Lighttpd
[root@server ~]# rpm -Uhv http://apt.sw.be/redhat/el5/en/i386/rpmforge/RPMS/rpmforge-release-0.3.6-1.el5.rf.i386.rpm

[root@server ~]# yum -y install lighttpd


7. 为Lighttpd设置系统开机启动服务

[root@server ~]# chkconfig --levels 235 lighttpd on

[root@server ~]# /etc/init.d/lighttpd start
 

 

(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜