PrestaShop 是一个免费增值的开源电子商务软件。它让您可以通过安全付款、多种运输方式、自定义主题等方式开设自己的在线商店。用 PHP 编写的 PrestaShop 是高度可定制的,支持所有主要的支付服务,被翻译成多种语言并针对许多国家进行了本地化,具有完全响应式设计(前台和后台)等。
在 Debian 11 Bullseye 上安装 PrestaShop
步骤 1. 在我们安装任何软件之前,通过apt
在终端中运行以下命令来确保您的系统是最新的很重要:
sudo apt update sudo apt upgrade
步骤 2. 安装 LAMP 堆栈。
需要 Debian 11 LAMP 服务器。如果您没有安装 LAMP,请阅读我们之前的教程,在 Debian 11 上安装LAMP 服务器。
步骤 3. 在 Debian 11 上安装 PrestaShop。
默认情况下,PrestaShop 在 Debian 11 基础存储库上不可用。所以,现在我们从官方页面下载最新的稳定版 PrestaShop:
wget https://github.com/PrestaShop/PrestaShop/releases/download/1.7.8.1/prestashop_1.7.8.1.zip
接下来,提取下载的文件:
unzip prestashop_1.7.8.1.zip sudo mv * /var/www/html/www.your-domain.com/
我们需要更改一些文件夹的权限:
sudo chown -R www-data:www-data /var/www/html/www.your-domian.com/
步骤 4. 配置 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 控制台并为 PrestaShop 创建一个数据库。运行以下命令:
mysql -u root -p
这将提示您输入密码,因此请输入您的 MariaDB 根密码并按 Enter。登录到数据库服务器后,您需要为 PrestaShop 安装创建一个数据库:
MariaDB [(none)]> CREATE DATABASE prestashop_db; MariaDB [(none)]> CREATE USER 'prestashop_user'@'localhost' IDENTIFIED BY 'your-strong-password'; MariaDB [(none)]> GRANT ALL PRIVILEGES ON prestashop_db.* to prestashop_user@'localhost'; MariaDB [(none)]> FLUSH PRIVILEGES; MariaDB [(none)]> exit
步骤 5. 配置 Apache。
现在我们创建一个新的 VirtualHost 来更好地管理 PrestaShop 网站:
sudo nano /etc/apache2/sites-available/www.your-domain.com.conf
添加以下文件:
<VirtualHost *:80> ServerName your-domain.com ServerAlias www.your-domain.com ServerAdmin admin@your-domain.com DocumentRoot /var/www/html/www.your-domain.com ErrorLog ${APACHE_LOG_DIR}/www.your-domain.com_error.log CustomLog ${APACHE_LOG_DIR}/www.your-domain.com_access.log combined <Directory /var/www/html/www.your-domain.com> Options FollowSymlinks AllowOverride All Require all granted </Directory> </VirtualHost>
保存并关闭,然后重新启动 Apache 网络服务器以进行更改:
sudo a2ensite www.your-domian.com sudo a2enmod rewrite ssl sudo systemctl restart apache2
步骤 6. 安装 Let’s Encrypt 证书。
首先,使用以下命令将 Certbot 安装到您的 Debian 系统:
udo apt install certbot python3-certbot-apache
然后,使用以下命令生成证书:
sudo certbot --apache -d [your-domain.com]
然后系统会提示您输入证书的电子邮件地址。输入后,您必须同意条款和条件并决定是否要与电子前沿基金会共享您的电子邮件地址。最后一步是可选的。成功后,再次重新加载 Apache 以加载所有新配置。
步骤 7. 访问 PrestaShop Web 界面。
成功安装后,打开 Web 浏览器并使用 URL 访问 PrestaShop 。您将被重定向到 PrestaShop 界面页面:http://your-domian.com
感谢您使用本教程在 Debian 11 Bullseye 上安装最新版本的 PrestaShop 电子商务内容管理平台。如需其他帮助或有用信息,我们建议您查看PrestaShop 官方网站。