如何在 AlmaLinux 8 上安装 Magento

Magento 是 Adob​​e 的一个流行的开源电子商务平台。它是用 PHP 编写的,并使用 MySQL 或 MariaDB 作为数据库后端。Magento 是完全可定制的,以满足用户的要求,并允许他们在几分钟内创建和启动一个功能齐全的在线商店。

在 AlmaLinux 8 上安装 Magento

步骤 1. 首先,让我们先确保您的系统是最新的。

sudo dnf update
sudo dnf install epel-release

步骤 2. 安装 LAMP 服务器。

需要一个 AlmaLinux LAMP 服务器。如果您没有安装 LAMP,您可以在此处按照我们的指南进行操作

步骤 3. 安装 Composer。

在开始之前,您需要在服务器上安装 Composer。您可以使用以下命令安装它:

curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer

步骤 4. 在 AlmaLinux 8 上安装 Magento。

现在我们从官方页面下载 Magento 安装程序:

cd /var/www/html/
wget https://github.com/magento/magento2/archive/2.3.zip
unzip 2.3.zip
mv magento2-2.3 magento2

接下来,使用以下命令更改目录并安装所有必需的 PHP 依赖项:

composer update
composer install

我们需要更改一些文件夹的权限:

chown -R apache:apache /var/www/html/magento2
chmod -R 755 /var/www/html/magento2

然后,运行以下命令来安装 Magento:

cd /var/www/html/magento2/
bin/magento setup:install --admin-firstname="Magento" --admin-lastname="Admin" --admin-email="admin@example.com" --admin-user="admin" --admin-password="Hitesh@1981" --db-name="magentodb" --db-host="localhost" --db-user="magentouser" --db-password="password" --language=en_US --currency=USD --timezone=UTC --cleanup-database --base-url=http://"magento.example.com"

输出:

[Progress: 701 / 706]
Installing admin user...
[Progress: 702 / 706]
Caches clearing:
Cache cleared successfully
[Progress: 703 / 706]
Disabling Maintenance Mode:
[Progress: 704 / 706]
Post installation file permissions check...
For security, remove write permissions from these directories: '/var/www/html/magento2/app/etc'
[Progress: 705 / 706]
Write installation date...
[Progress: 706 / 706]
[SUCCESS]: Magento installation complete.
[SUCCESS]: Magento Admin URI: /admin_y3asxt
Nothing to import.

步骤 4. 为 NextCloud 配置 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 控制台并为 Magento 创建一个数据库。运行以下命令:

mysql -u root -p

这将提示您输入密码,因此请输入您的 MariaDB 根密码并按 Enter。登录到数据库服务器后,您需要为 Magento 安装创建一个数据库:

MariaDB [(none)]> CREATE DATABASE magentodb;
MariaDB [(none)]> CREATE USER 'magentouser'@'localhost' IDENTIFIED BY 'your-str0nge-password';
MariaDB [(none)]> GRANT ALL ON magentodb.* TO 'magentouser'@'localhost' IDENTIFIED BY 'your-str0nge-password' WITH GRANT OPTION;
MariaDB [(none)]> FLUSH PRIVILEGES;
MariaDB [(none)]> EXIT;

步骤 5. 为 Magento 配置 Apache。

现在为 Magento 创建一个新的 Apache 虚拟主机配置文件:

nano /etc/httpd/conf.d/magento.conf

添加以下行:

<VirtualHost *:80>
ServerAdmin admin@example.com
ServerName magento.example.com
DocumentRoot /var/www/html/magento2/
DirectoryIndex index.php
<Directory /var/www/html/magento2/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog /var/log/httpd/magento_error.log
CustomLog /var/log/httpd/magento_access.log combined
</VirtualHost>

保存并关闭文件。重启apache服务使更改生效:

systemctl restart httpd.service

步骤 6. 配置防火墙。

允许防火墙使用 HTTP 和 HTTPS 并使用以下命令重新加载它:

sudo firewall-cmd --permanent --zone=public --add-service=http
sudo firewall-cmd --permanent --zone=public --add-service=https
sudo firewall-cmd --reload

步骤 7. 访问 Magento Web 界面。

完成逐步安装后,将浏览器导航到您的服务器 URL 。您应该会看到以下页面:http://magento.example.com/admin_y3asxt

magento-web-interface

感谢您使用本教程在您的 AlmaLinux 8 系统上安装 Magento 电子商务软件。如需更多帮助或有用信息,我们建议您查看官方 Magento 网站

未经允许不得转载:统信UOS之家 » 如何在 AlmaLinux 8 上安装 Magento

相关文章