yum安装lnmp环境
安装前准备
1 | # 配置阿里云 yum 仓库 |
配置 nginx repo
1 | $ vim /etc/yum.repos.d/nginx.repo |
yum安装lnmp
1 | $ yum -y install nginx mariadb-server php php-bcmath php-fpm php-gd php-json php-mbstring php-mcrypt php-mysqlnd php-opcache php-pdo php-pdo_dblib php-pgsql php-recode php-snmp php-soap php-xml php-pecl-zip |
启动php和mariadb
1 | # 启动 PHP-FPM |
创建 wordpress 数据库
1 | # 连接数据库,默认密码为空 |
配置nginx虚拟主机
1 | $ vim /etc/nginx/conf.d/blog.conf |
配置wordpress
下载最新版wordpress
1 | $ wget https://cn.wordpress.org/latest-zh_CN.tar.gz |
配置wordpress连接数据库
1 | $ tar xf latest-zh_CN.tar.gz |
启动 nginx
1 | $ systemctl enable nginx |
访问wordpress
nginx 启动后我们就可以在浏览器通过 IP 地址访问 WordPress 了,首先会让我们给博客起个名字,名设置管理员的账号密码,点击安装 WordPress 就完成了。