awoo icon indicating copy to clipboard operation
awoo copied to clipboard

When running sudo make install it occurred an error

Open ScrapW opened this issue 6 years ago • 1 comments

mysql -u root < create.sql
ERROR 1064 (42000) at line 3: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'IDENTIFIED BY 'awoo'' at line 1
make: *** [Makefile:9: install] Error 1

ScrapW avatar Nov 14 '19 08:11 ScrapW

In recent versions MySQL started to disallow automatic user creation with GRANT query, so you need to create user manually.

You can either downgrade your MySQL version or replace line 3 in create.sql with this:

CREATE USER awoo@'%' IDENTIFIED BY 'awoo';
GRANT ALL ON awoo.* TO awoo@'%';

ghost avatar Nov 15 '19 13:11 ghost