web|web 平台搭建-LAMP(CentOS-6)

LAMP是Linux Apache MySQL PHP的缩写,即把Apache、MySQL以及PHP安装在Linux系统上,组成一个环境来运行PHP的脚本语言。Apache是最常用的Web服务软件,而MySQL是比较小型的数据库软件。三个角色可以安装在一台机器上,也可以分开(但httpd和php要在一起的)
web|web 平台搭建-LAMP(CentOS-6)
文章图片

编译安装 三部曲:./configure make make install
Apache Linux apachectl命令
Linux apachectl命令可用来控制Apache HTTP服务器的程序。
【web|web 平台搭建-LAMP(CentOS-6)】apachectl是slackware内附Apache HTTP服务器的script文件,可供管理员控制服务器,但在其他Linux的Apache HTTP服务器不一定有这个文件。
语法

apachectl [configtest][fullstatus][graceful][help][restart][start][status][stop]
参数:
configtest 检查设置文件中的语法是否正确。
fullstatus 显示服务器完整的状态信息。
graceful 重新启动Apache服务器,但不会中断原有的连接。
help 显示帮助信息。
restart 重新启动Apache服务器。
start 启动Apache服务器。
status 显示服务器摘要的状态信息。
stop 停止Apache服务器。
启动 Apache 测试
#/usr/local/apache2/bin/apachectl start
1.启动 MySQL 服务
用原本源代码的方式去使用和启动 mysql
/usr/local/mysql/bin/mysqld_safe --user=mysql &
2.设定 MySQL 密码
/usr/local/mysql/bin/mysqladmin -uroot password 123456
3.登录 MySQL
/usr/local/mysql/bin/mysql -u root -p
mysql>show databases;
mysql>use test;
mysql>show tables;
mysql>exit

    推荐阅读