【发布时间】:2017-03-03 20:38:38
【问题描述】:
【问题讨论】:
【问题讨论】:
Access denied for user 'hue'@'localhost'
这意味着您的数据库(= MySQL)不允许hue 用户从本地主机登录。
请按照程序进行; Using an External Database for Hue Using the Command Line
特别是,
mysql> create database hue;
Query OK, 1 row affected (0.01 sec)
mysql> grant all on hue.* to 'hue'@'localhost' identified by '<secretpassword>';
Query OK, 0 rows affected (0.00 sec)
【讨论】: