答案 0 :(得分:1)
Access denied for user 'hue'@'localhost'
这意味着您的数据库(= MySQL)不允许hue
用户从localhost登录。
请按照程序; 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)