用LAMP架构搭建自己的博客

搭建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环境进行校验

用LAMP架构搭建自己的博客

在浏览器输入服务器IP:192.168.1.63 若可以看php信息的页面则表示已经ok
如下图:
用LAMP架构搭建自己的博客

如果访问不了,注意查看iptable是否规则清空
Iptables –F 清空规则 或者
iptables -I INPUT -p tcp –dport 80 -j ACCEPT 添加规则80端口允许访问

搭建LAMP环境部署WORDPRESS,博客网站

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 然后根据提示进行操作

用LAMP架构搭建自己的博客

用LAMP架构搭建自己的博客

用LAMP架构搭建自己的博客

用LAMP架构搭建自己的博客

用LAMP架构搭建自己的博客

用LAMP架构搭建自己的博客

到这里博客就搭建好了,接下来开始在自己的博客里书写自己的人生吧

上一篇:Linux Lamp服务器搭建流程 2021


下一篇:lamp架构之nginx,mysql,php的安装编译