LAMP实现wordpress站点搭建实验
Posted 林炜玮_51CTO
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LAMP实现wordpress站点搭建实验相关的知识,希望对你有一定的参考价值。
Centos8部署LAMP+wordpress
安装程序
dnf -y install httpd php php-json php-mysqlnd mariadb-server
systemctl enable --now httpd mariadb
echo "<?php phpinfo(); ?>" > /var/www/html/index.php
查看PHP测试页:浏览器输入172.16.10.12/index.php
数据库配置
mysql
MariaDB [(none)]> create database wordpress;
MariaDB [(none)]> grant all on wordpress.* to wordpress@localhost identified by linweiwei;
MariaDB [(none)]> flush privileges;
Wordpress部署
上传已经下载好的安装包,或去官网下载https://cn.wordpress.org/
tar xf wordpress-5.9-zh_cn.tar.gz
mv wordpress/* /var/www/html/
chown -R apache.apache /var/www/html/ #apache默认使用账户,根据生产情况可调整
#浏览器访问
http://LAMP服务器地址/wordpress
以上是关于LAMP实现wordpress站点搭建实验的主要内容,如果未能解决你的问题,请参考以下文章
使用三台服务器搭建 lamp+nfs 的博客系统(wordpress)