magento2安装步骤

一,下载magento2安装包


选择安装的magento路径:
cd /var/www/ composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition mv project-community-edition magento2
下载包之后

二,配置Magento密钥

在Magento网站marketplace.magento.com上注册一个帐户。这个账户需要使用Magento和Magento Composer商店。注册后,转到选项卡My Profile > My Access Keys > Magento 2,然后生成密钥。

 

三,安装Magento的第三方组件

cd /var/www/magento2/
composer install -v
输入生产的私钥和公钥字符串

四,命令行一键安装M2

我们将在命令行上安装M2。在M2目录/var/www/magento2/bin/中,有一个名为magento的二进制文件,用于安装和管理magento
/var/www/magento2下:
运行命令:

php bin/magento setup:install --backend-frontname="adminlogin" \
--key="65b07bf53f4d7ee8f4b884c102e5ee62" \
--base-url="http://magento2demo.texiaoyao.cn" \
--base-url-secure="https://magento2demo.texiaoyao.cn" \
--db-host=localhost \
--db-name=magento2 \
--db-user=magento_user \
--db-password='mi@$wEw*d8' \
--admin-firstname=Zou  \
--admin-lastname=Last \
--admin-email=zouhongzhao@126.com \
--admin-user=admin \
--admin-password=123A_Zhz \
--language=en_US \
--currency=USD \
--timezone=America/Chicago \
--use-rewrites=1


posted on 2018-11-01 15:28  kevin_yang123  阅读(3723)  评论(0编辑  收藏  举报