
Prompt:
1.CREATE DATABASE bfcdatabase;
2.CREATE USER 'bfc4mysql'@'192.168.178.123' IDENTIFIED BY 'dbpassword';
3.GRANT ALL PRIVILEGES ON bfcdatabase.* TO 'bfc4mysql'@'192.168.178.123';
4.UPDATE db SET Host='192.168.178.123' where Db='bfcdatabase';
5.UPDATE user SET Host='192.168.178.123' where user='bfc4mysql';
6.FLUSH PRIVILEGES;