使用Composer安装Magento 2.4
首先到https://marketplace.magento.com/
获取username和passowd
Public key
即username,Private key
即password
安装composer
curl \-sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer
composer -v
使用composer获取代码
cd /var/www/html
mkdir magento
chown -R www.www magento
cd magento
su www
composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition .
# 如果中途中断了,不要再用上面的命令,改用下面的命令继续获取代码
composer update
安装Magento
Magento 2.4开始只能通过命令行安装。参考以下命令:
bin/magento setup:install \
--base-url=http://test.magento.com \
--db-host=localhost \
--db-name=magento \
--db-user=magento \
--db-password=magento \
--admin-firstname=admin \
--admin-lastname=admin \
--admin-email=admin@admin.com \
--admin-user=admin \
--admin-password=admin123 \
--language=en_US \
--currency=USD \
--timezone=America/Chicago \
--use-rewrites=1
根据自己的情况,修改参数的值。
安装完毕后,会出现以下内容:
[SUCCESS]: Magento installation complete.
[SUCCESS]: Magento Admin URI: /admin_vvxyuo
Nothing to import.
从中获取后台入口,这里的入口是admin_vvxyuo
Nginx配置
su root
cd /etc/nginx/conf.d
vim test.magento.com.conf
upstream fastcgi_backend {
server 127.0.0.1:9000;
}
server {
listen 80;
server_name test.magento.com;
access_log /var/log/nginx/magento.access.log main;
error_log /var/log/nginx/magento.error.log error;
set $MAGE_ROOT /var/www/html/magento;
include /var/www/html/magento/nginx.conf;
}
cp /var/www/html/magento/nginx.conf.sample /var/www/html/magento/nginx.conf
nginx -t
# 重启nginx
nginx -s reload
# 启动php-fpm
/usr/sbin/php-fpm
访问:http://test.magento.com/admin_vvxyuo
Magento 2.4后台增加了二次验证功能,登录后,要出现以下提示:
如果不需要这个功能,可以禁用Magento_TwoFactorAuth
模块。
cd /var/www/html/magento/
bin/magento module:disable Magento_TwoFactorAuth
再次尝试登录,成功。
版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/03/25/install-magento-2-4-using-composer/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。
THE END
0
二维码
打赏
海报
使用Composer安装Magento 2.4
首先到https://marketplace.magento.com/获取username和passowd
Public key即username,Private key即password
安装composer
curl \-sS https://getcomposer……
文章目录
关闭
共有 0 条评论