awoo
awoo copied to clipboard
When running sudo make install it occurred an error
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
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@'%';