这篇文章给大家介绍如何在ubuntu LNMP中部署WordPress,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。Ubuntu LNMP 部署 WordPress软件版本说明:Ubuntu: 16.04 LTS;Wo
这篇文章给大家介绍如何在ubuntu LNMP中部署WordPress,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。
Ubuntu LNMP 部署 WordPress
软件版本说明:
Ubuntu: 16.04 LTS
;
WordPress: 4.7 zh-CN
1.首先添加 PPA
sudo apt-get updatesudo LC_ALL=en_US.UTF-8 add-apt-repository ppa:ondrej/php -ysudo apt-get update
2.然后,安装 PHP7.1
sudo apt-get -y install php7.1sudo apt-get -y install php7.1-mysql php7.1-fpm
sudo apt-get -y install mysql-server-5.7
设置密码就,OK。
至此,基本的 WordPress 环境就准备完毕了。
首先通过 git 拉取 WordPress 源代码:
git clone https://GitHub.com/JellyBool/wordpress.git /var/www/wordpress
通过下面的命令来登录 mysql
:
mysql -u root -p
在 mysql 执行:
CREATE DATABASE wordpress DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;CREATE USER 'jellybool' IDENTIFIED BY 'laravist';GRANT ALL PRIVILEGES ON wordpress.* TO 'jellybool';quit
注意上面的
jellybool
和laravist
是根据你自己的需求来设置的。
打开配置文件:
vim /etc/nginx/sites-available/default
进行以下配置配置:
root /var/www/wordpress;index index.php index.html index.htm index.nginx-debian.html;# 注意我们添加了 index.phplocation / { try_files $uri $uri/ /index.php?$query_string; }location ~ \.php$ { try_files $uri /index.php =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/var/run/php/php7.1-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; }
访问你的域名,就可以进行非常出名的 WordPress
五分钟安装过程啦!安装完毕之后,你就拥有一个 WordPress 的站点啦!
配置 WordPress 文件上传,打开 wp-config.php
文件:
define('FS_METHOD', 'direct');define('FS_CHMOD_DIR', 0777);define('FS_CHMOD_FILE', 0777);
sudo apt install -y php7.1-gd php7.1-mbstring php7.1-xmlrpc
关于如何在Ubuntu LNMP中部署WordPress就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
--结束END--
本文标题: 如何在Ubuntu LNMP中部署WordPress
本文链接: https://lsjlt.com/news/276787.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-27
2023-10-27
2023-10-26
2023-10-25
2023-10-21
2023-10-21
2023-10-18
2023-10-12
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0