centos安装lamp环境
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos安装lamp环境相关的知识,希望对你有一定的参考价值。
通过yum安装,需要联网且为su账号
- 设置开启启动mysql,httpd
/sbin/chkconfig httpd on
/sbin/chkconfig --add mysqld
/sbin/chkconfig mysqld on
/sbin/service httpd start
/sbin/service mysqld start
- 检测启动
检测apache:ps aux | grep httpd
检测mysql:netstat -tulnp | grep :3306
以上是关于centos安装lamp环境的主要内容,如果未能解决你的问题,请参考以下文章
CentOS环境下yum安装LAMP(Linux+Apache+Mysql+php)