hackpad icon indicating copy to clipboard operation
hackpad copied to clipboard

mysql script error

Open xiaoyi001yeye opened this issue 9 years ago • 1 comments

My mysql version 5.6.27 when i run ./contrib/scripts/setup-mysql-db.sh ERROR 1054 (42S22) at line 1: Unknown column 'plugin' in 'mysql.user'

xiaoyi001yeye avatar Jan 24 '16 09:01 xiaoyi001yeye

try creating the database and the user by hand from the mysql console

create database hackpad;
grant all privileges on hackpad.* to 'hackpad'@'localhost' identified by 'INSERT_PASSWORD_HERE';

X41 avatar Jan 24 '16 12:01 X41