Magento 2是流行的电子商务软件的Magento的最新版本。在以前的教程中,你得到了有关详细信息,
Magento2安装在Linux上。本教程你将了解到Magento 2 的数据库配置文件的详细信息。在旧版本的数据库配置文件是在/etc/local.xml文件中,但在Magento2此配置位于应 app/etc/env.php文件中。
Magento 2数据库配置文件
要改变你的Magento 2的数据库服务器的主机名,数据库用户名,密码或数据库名称,你需要编辑以下文件。
/<Magento Install Dir>/app/etc/env.php
导航到你的Magento 2的安装目录,编辑
app/etc/env.php 配置文件在你喜欢的编辑器和搜索以下设置,并做必要的修改。
'db' =>
array (
'table_prefix' => '',
'connection' =>
array (
'default' =>
array (
'host' => 'localhost',
'dbname' => 'database_name',
'username' => 'database_username',
'password' => 'database_password',
'active' => '1',
),
),
),
现在更新如下显示的值
- localhost: MySQL服务器的主机名。
- database_username: MySQL用户来连接数据库服务器。
- database_password: MySQL的用户密码。
- database_name: Magento的的MySQL数据库名称。