在Debian 10 Buster上安装WordPress
步骤1.在安装任何软件之前,请务必apt
在终端中运行以下命令,以确保您的系统是最新的,这一点很重要:
sudo apt update
sudo apt upgrade
步骤2.安装LAMP堆栈。
需要Debian 10 LAMP服务器。
步骤3.在Debian 10上安装WordPress
现在,我们转到WordPress的下载页面并下载WordPress的最新稳定版本。在撰写本文时,它的版本是5.6:
wget https://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 wordpressdb character set utf8 collate utf8_bin; GRANT ALL PRIVILEGES on wordpressdb.* to 'wpuser'@'localhost' identified by 'your-strong-password'; FLUSH PRIVILEGES; exit
步骤5.配置WordPress
在此步骤中,我们将配置WordPress的主要配置文件,我们需要在其中配置其基本参数,以便它可以与数据库和用户连接:
mv wp-config-sample.php wp-config.php
现在,使用您喜欢的任何编辑器打开它,以在WordPress配置文件中进行任何更改:
nano wp-config.php
这是我们需要根据以前的数据库和用户设置更新的值:
// ** MySQL settings - You can get this info from your web host ** // /** The name of the database for WordPress */ define('DB_NAME', 'wordpressdb'); /** MySQL database username */ define('DB_USER', 'wpuser'); /** MySQL database password */ define('DB_PASSWORD', 'your-strong-password'); /** MySQL hostname */ define('DB_HOST', 'localhost');
步骤6.为WordPress配置Apache。
在Apache中创建一个新的虚拟主机指令。例如,在您的虚拟服务器上创建一个名为’ ‘的新Apache配置文件:wordpress.conf
nano /etc/apache2/sites-available/wordpress.conf
添加以下行:
<VirtualHost *:80> ServerAdmin admin@your_domain.com DocumentRoot /var/www/html ServerName your-domain.com <Directory /var/www/html/> Options FollowSymlinks AllowOverride All Require all granted </Directory> ErrorLog ${APACHE_LOG_DIR}/your-domain.com_error.log CustomLog ${APACHE_LOG_DIR}/your-domain.com_access.log combined </VirtualHost>
现在,我们可以重新启动Apache Web服务器,以便进行更改:
sudo ln -s /etc/apache2/sites-available/wordpress.conf /etc/apache2/sites-enabled/wordpress.conf sudo sudo a2enmod rewrite sudo a2ensite wordpress.conf sudo systemctl restart apache2.service
步骤7.安装SSL证书。
在此步骤中,我们将安装SSL(TLS)证书。我们将使用一个免费的“让我们加密”证书在所有浏览器和CertBot应用程序中运行,以安装证书并保持更新:
sudo apt install certbot python-certbot-apache
接下来,运行certbot
a命令,该命令将下载证书并创建Apache配置以使用证书:
sudo certbot --apache
然后将提示您输入证书的电子邮件地址。输入后,您必须同意条款和条件,并决定是否要与电子前沿基金会共享您的电子邮件地址。最后一步是可选的。成功后,再次重新加载Apache以加载所有新配置:
sudo systemctl reload apache2
步骤8.访问WordPress Web界面。
默认情况下,WordPress将在HTTP端口80上可用。打开您喜欢的浏览器,然后浏览至或完成所需的步骤以完成安装。如果您使用的是防火墙,请打开端口80和443以启用对控制面板的访问。https://your-domain.com
https://server-ip-address/
恭喜你!您已经成功安装了WordPress。使用本教程在Debian 10 Buster系统上安装WordPress。有关其他帮助或有用信息,我们建议您检查WordPress官方网站。
原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/Yun39587.html