安装迁移过程中的错误代码不是英文的,如何将其更改为英文?
error code during install migration is not in english, how to change it to english?
*******\wamp\www\laravel>php artisan migrate:install
[PDOException] SQLSTATE[HY000] [1045] AccΦs refusΘ pour
l'utilisateur: 'homestead'@'@local host' (mot de passe: OUI)
谁能告诉我如何将语言更改为英语?这对我将来真的很有帮助。提前谢谢你。
要更改 MySQL 服务器中的错误消息语言,您应该首先登录到 MySQL 服务器
mysql -u homestead -p
,用户 'homestead' 的默认密码应该是 'secret',除非您更改了它。登录后,通过执行 SET lc_messages = 'en_US';
.
将语言设置为英语
看来您使用的是 Wamp 服务器的 mySQL..
- 左键单击 wamp 服务器图标
- 悬停MySQL
- 左键单击 my.ini
在文本编辑器中,找到这一行:
lc-messages=fr_FR
并更改为:
lc-messages=en_US
保存更改后,需要重启Mysql服务。
顺便说一下,您得到的错误是指:
access denied for user: homestead'@'@localhost'(password: yes)
确保正确配置 laravel 以在 wamp-server 上使用并且数据库设置正确..
您可能需要检查根目录中的 app/config/databese.php
和 .env
文件..
https://laravel.com/docs/5.0/configuration#environment-configuration
*******\wamp\www\laravel>php artisan migrate:install
[PDOException] SQLSTATE[HY000] [1045] AccΦs refusΘ pour l'utilisateur: 'homestead'@'@local host' (mot de passe: OUI)
谁能告诉我如何将语言更改为英语?这对我将来真的很有帮助。提前谢谢你。
要更改 MySQL 服务器中的错误消息语言,您应该首先登录到 MySQL 服务器
mysql -u homestead -p
,用户 'homestead' 的默认密码应该是 'secret',除非您更改了它。登录后,通过执行 SET lc_messages = 'en_US';
.
看来您使用的是 Wamp 服务器的 mySQL..
- 左键单击 wamp 服务器图标
- 悬停MySQL
- 左键单击 my.ini
在文本编辑器中,找到这一行:
lc-messages=fr_FR
并更改为:
lc-messages=en_US
保存更改后,需要重启Mysql服务。
顺便说一下,您得到的错误是指:
access denied for user: homestead'@'@localhost'(password: yes)
确保正确配置 laravel 以在 wamp-server 上使用并且数据库设置正确..
您可能需要检查根目录中的 app/config/databese.php
和 .env
文件..
https://laravel.com/docs/5.0/configuration#environment-configuration