在Linux Mint 20 Ulyana上安装WordPress
步骤1.在运行以下教程之前,重要的是通过apt
在终端中运行以下命令来确保系统是最新的:
sudo apt update
步骤2.安装LAMP服务器。
需要Linux Mint LAMP服务器。
步骤3.在Linux Mint 20上安装WordPress。
现在我们去WordPress官方网站下载源代码:
wget http://wordpress.org/latest.zip
接下来,将WordPress存档解压缩到服务器上的文档根目录:
unzip -q latest.zip -d /var/www/html/ cd wordpress cp -a * ..
我们将需要更改一些文件夹权限:
chown www-data:www-data -R /var/www/html/
步骤4.为WordPress配置MariaDB。
默认情况下,不会对MariaDB进行加固。您可以使用mysql_secure_installation
脚本保护MariaDB 。您应该仔细阅读每个步骤,并在每个步骤下面仔细进行操作,这将设置root密码,删除匿名用户,禁止远程root登录以及删除测试数据库并访问安全的MariaDB:
mysql_secure_installation
像这样配置它:
- Set root password? [Y/n] y - Remove anonymous users? [Y/n] y - Disallow root login remotely? [Y/n] y - Remove test database and access to it? [Y/n] y - Reload privilege tables now? [Y/n] y
接下来,我们将需要登录MariaDB控制台并为WordPress创建一个数据库。运行以下命令:
mysql -u root -p
这将提示您输入密码,因此输入您的MariaDB根密码,然后按Enter。登录数据库服务器后,您需要为WordPress安装创建数据库:
CREATE DATABASE WP_database CREATE USER ‘wp_user’@’localhost’ IDENTIFIED BY ‘mypassword’; GRANT ALL ON WP_database.* TO ‘wp_user’@'localhost’ IDENTIFIED BY ‘your-password’ WITH GRANT OPTION; FLUSH PRIVILEGES; EXIT
步骤5.配置WordPress。
WordPress将其配置(例如数据库)存储在文件中,您需要运行如下所示的命令来创建此文件:wp-config.php
mv wp-config-sample.php wp-config.php nano wp-config.php
添加以下行:
define(‘DB_NAME’, ‘WP_database’); define(DB_USER’, ‘wp_user’); define(DB_PASSWORD’, ‘your-password’);
步骤6.为WordPress配置Apache。
在Apache中创建一个新的虚拟主机指令。例如,在您的虚拟服务器上创建一个名为’ ‘的新Apache配置文件:wordpress.conf
touch /etc/apache2/sites-available/wordpress.conf ln -s /etc/apache2/sites-available/wordpress.conf /etc/apache2/sites-enabled/wordpress.conf nano /etc/apache2/sites-available/wordpress.conf
添加以下行:
<VirtualHost *:80> ServerAdmin admin@yourdomain.com DocumentRoot /var/www/html/ ServerName your-domain.com ServerAlias www.your-domain.com <Directory /var/www/html/> Options FollowSymLinks AllowOverride All Order allow,deny allow from all </Directory> ErrorLog /var/log/apache2/your-domain.com-error_log CustomLog /var/log/apache2/your-domain.com-access_log common </VirtualHost>
然后,我们可以重新启动Apache Web服务器,以便进行更改:
sudo a2ensite wordpress.conf sudo a2enmod rewrite sudo systemctl restart apache2.service
步骤7.配置防火墙。
运行以下命令以打开HTTP和HTTPS端口:
sudo ufw allow 'Apache Full'
步骤8.访问WordPress网站。
默认情况下,WordPress将在HTTP端口80上可用。打开您喜欢的浏览器,然后浏览至或完成所需的步骤以完成安装。如果一切都已正确安装,则应显示如下页面:http://your-domain.com
http://your-ip-address/
恭喜你!您已经成功安装了WordPress。有关其他帮助或有用信息,我们建议您检查WordPress官方网站。
原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/Yun39297.html