File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -76,6 +76,28 @@ docker exec -it 8294e1800058 /bin/sh
7676--WIP---
7777
7878## Issues and Resolutions
79+
80+ ** Issue:** While importing or creating the database, you may face this error ` ERROR 1044 (42000): Access denied for user 'drupal'@'%' `
81+
82+ ** Resolution:** You should connect with admin credentials. In our case, the user name is root and the password is admin.
83+
84+ ** Issue:** ` ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/ru `
85+
86+ ** Resolution:** Make sure correct host name is there. In our case, it's mysql.
87+
88+ ```
89+ $databases['default']['default'] = array (
90+ 'database' => 'drupal',
91+ 'username' => 'drupal',
92+ 'password' => 'drupal123',
93+ 'prefix' => '',
94+ 'host' => 'mysql',
95+ 'port' => '3306',
96+ 'namespace' => 'Drupal\\Core\\Database\\Driver\\mysql',
97+ 'driver' => 'mysql',
98+ );
99+ ```
100+
79101--WIP---
80102
81103## Directory Structure
You can’t perform that action at this time.
0 commit comments