Magento 2.4 安装及开发记录
Github:https://github.com/magento/magento2
Download:https://magento.com/tech-resources/download
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
Magento 2.4开始,产品的搜索强制使用Elasticsearch,所以需要先安装Elasticsearch 7.x
- 安装指南:https://devdocs.magento.com/guides/v2.4/install-gde/bk-install-guide.html
- Command-line installation:https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-install.html
- Install Magento using Composer:https://devdocs.magento.com/guides/v2.4/install-gde/composer.html
- Install Magento using archive:https://devdocs.magento.com/guides/v2.4/install-gde/prereq/zip_install.html
- 配置指南:https://devdocs.magento.com/guides/v2.4/config-guide/bk-config-guide.html
- PHP开发人员指南:https://devdocs.magento.com/guides/v2.4/extension-dev-guide/bk-extension-dev-guide.html
- 前端开发人员指南:https://devdocs.magento.com/guides/v2.4/frontend-dev-guide/bk-frontend-dev-guide.html
目录权限配置:
# chown -R www.www /data/www/magento2
# chmod 777 -R vendor
# chmod 777 -R var
# chmod 777 -R generated
# chmod 777 -R app/etc
# rm -rf var/cache/* var/page_cache/* var/generation/*
登陆遇到收邮件问题:
禁用验证命令:
bin/magento module:disable Magento_TwoFactorAuth
版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/03/25/magento-2-4-installation-and-development-record/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。
THE END
0
二维码
打赏
海报
Magento 2.4 安装及开发记录
Github:https://github.com/magento/magento2
Download:https://magento.com/tech-resources/download
Magento 2.4开始只能通过命令行安装。参考以下命令:……
文章目录
关闭
共有 0 条评论