用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
- 1
- 2
- 3
- 4
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端口允许访问
搭建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 然后根据提示进行操作
到这里博客就搭建好了,接下来开始在自己的博客里书写自己的人生吧
文章来源: zmedu.blog.csdn.net,作者:互联网老辛,版权归原作者所有,如需转载,请联系作者。
原文链接:zmedu.blog.csdn.net/article/details/68943531
- 点赞
- 收藏
- 关注作者
评论(0)