2017-03-03 51 views

回答

1
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)