【LAMP实现wordpress站点搭建实验】今日长缨在手,何时缚住苍龙。这篇文章主要讲述LAMP实现wordpress站点搭建实验相关的知识,希望能为你提供帮助。
Centos8部署LAMP+wordpress
安装程序
dnf -y install httpd php php-json php-mysqlnd mariadb-server
systemctl enable --now httpd mariadb
echo "<
?phpphpinfo();
?>
">
/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
推荐阅读
- iptables
- #私藏项目实操分享# 配置chrony服务,实现服务器时间自动同步
- Linux根目录扩容
- MySQL 主从同步延时问题与解决方案
- Nginx 实现LNMP+kodcloud站点搭建实验
- 05-docker系列-使用dockerfile构建镜像
- LAMP实现phpMyadmin站点搭建实验
- 如何配置ssh无密登录
- #yyds干货盘点#k8s中的基础核心概念