当前位置:网站首页>alicloud3搭建wordpress
alicloud3搭建wordpress
2022-08-03 19:55:00 【李玺】
alicloud linux3安装和部署wordpress,手动安装,没用面板。
Lnmp
通过 LNMP一键安装包一键搭建服务器环境。
下载地址:https://lnmp.org/download.html
下载后解压下,然后执行 ./install.sh 安装。
大概需要20分钟,建议除了数据库密码外,其他全选默认版本,一路回车就可以。
Mysql
登录: mysql -uroot -p
创建wordpress数据库:CREATE DATABASE wordpress
添加wordpress数据库用户,wordpress是账号,password123是密码,自己改改。
create user 'wordpress'@'localhost' identified by 'password123';
grant all privileges on wordpress.* to 'wordpress'@'localhost' identified by 'password123';
Nginx
更改 nginx.conf 配置文件,主要换路径。
server {
listen 80;
# 下面youhost换成你自己的域名
server_name yourhost.com www.youhost.com;
# 下面这个是wordpress部署路径
root /usr/local/nginx/html/wordpress;
location / {
index index.php index.html index.htm;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
include fastcgi_params;
}
}
wordpress
下载安装包并解压
wget https://cn.wordpress.org/latest-zh_CN.tar.gz
tar -zxvf latest-zh_CN.tar.gz
复制到nginx部署目录
mv ./wordpress /usr/local/nginx/html/
然后对目录文件设置权限,要保证nginx和部署目录的用户组一致。
首先查看并确认nginx用户组
cat /etc/passwd
看下有nginx没,没有的话就自己加一下。
root:x:0:0:root:/root:/bin/bash
nginx:x:996:995:nginx user:/var/cache/nginx:/sbin/nologin
没有的话就创建用户组
useradd -r -M -s /sbin/nologin nginx
然后
cd /usr/local/nginx/html/
chown -R nginx.nginx wordpress
cd wordpress
chmod 777 *
最后操作
现在访问域名即可,填数据库信息,DB用户建议不要用root,用后面创建的user,提交成功后会给出一段文字。
在/usr/local/nginx/html/wordpress下新建 wp-config.php 文件。
然后把给出的文字内容,复制到 wp-config.php 文件中。
保存后,继续操作即可完成部署。
搭建成功。
边栏推荐
猜你喜欢
【STM32】标准库-自定义BootLoader
JS 内置构造函数 扩展 prototype 继承 借用构造函数 组合式 原型式creat 寄生式 寄生组合式 call apply instanceof
LeetCode 952. Calculate Maximum Component Size by Common Factor
Hinton2022年RobotBrains访谈记录
ECCV2022 | 用于视频问题回答的视频图Transformer
Shell编程之循环语句
倒计时2天,“文化数字化战略新型基础设施暨文化艺术链生态建设发布会”启幕在即
开源生态研究与实践| ChinaOSC
高性能计算软件与开源生态| ChinaOSC
Handler source code analysis
随机推荐
Handler source code analysis
网络协议-TCP、UDP区别及TCP三次握手、四次挥手
Detailed explanation of JWT
标准C语言学习总结11
【leetcode】剑指 Offer II 009. 乘积小于 K 的子数组(滑动窗口、双指针)
1-php学习笔记之数据类型
Anaconda 虚拟环境迁移
Calculation of the array serial number of Likou brush questions (one question per day 7/28)
net-snmp编译报错:/usr/bin/ld: cannot find crti.o: No such file or directory
汉源高科8光口12电口交换机千兆8光8电12电16电网管型工业以太网交换机
简易电子琴设计(c语言)
LeetCode 952. Calculate Maximum Component Size by Common Factor
CentOS 7 安装mysql
Pytorch GPU 训练环境搭建
Shell programming loop statement
一种能有效缓解环境噪声对音频质量干扰的方案
虚拟机vmware设置nat模式上网
傅里叶变换(深入浅出)
LeetCode 622. 设计循环队列
【STM32】标准库-自定义BootLoader