innodb ยังไม่ทำงานครับแก้ไขดังนี้ครับ
* ลบไฟล์ ib_logfile0 ib_logfile1 ibdata1 มีสามไฟล์ครับอยู่ใน /var/lib/mysql
* จากนั้นสั่งรีสตาร์ท mysql ดังนี้ service mysql restart
*จากนั้น Grant สิทธิ์ดังตัวอย่าง
mysql>grant all on *.* to sa@'%' identified by 'sa' with grant option;
mysql>grant super on *.* to sa@'%' identified by 'sa';
mysql>grant all privileges on *.* to sa@'%' identified by 'sa' with grant option;
mysql>flush privileges;
และเพิ่ม
mysql>set global log_bin_trust_function_creators = 1;
*จากนั้นสั่งรีสตาร์ท mysql อีกที่และเรื่มรีสโตฐานข้อมูลใหม่ครับ