搭建LAMP环境
L:linux
A:apche
M:MysqL
P:PHP
yum install httpd PHP PHP-MysqL MysqL-server MysqL –y 安装PHP,MysqL-server,httpd
service httpd start 启动服务 chkconfig httpd on 添加开机启动 service MysqLd start chkconfig MysqLd on
MysqL_secure_installation 数据库进行初始化配置,设置好root密码
cat << EOF >/var/www/html/index.PHP 创建PHPinfo脚本,对LAMP环境进行校验
在浏览器输入服务器IP:192.168.1.63 若可以看PHP信息的页面则表示已经ok
如下图:
如果访问不了,注意查看iptable是否规则清空
Iptables –F 清空规则 或者
iptables -I INPUT -p tcp –dport 80 -j ACCEPT 添加规则80端口允许访问
wget https://wordpress.org/latest.tar.gz
tar -xf latest.tar.gz
cp -a wordpress/ /var/www/html/ 拷贝网站程序到默认网站目录下
chown -R apache:apache /var/www/ 对网站目录进行授权,不授权配置不能写入
MysqL> create database wordpress; 创建wordpress数据库,我们安装wordpress 时会需要导入数据库
http://192.168.1.63/wordpress 然后根据提示进行操作