linux as5 mysql数据库主机 IP:192.168.1.1 root/123456
远程主机 windows xp IP:192.168.1.2
[root@mail /root]#mysql -u root -p < DATABASE_MYSQL.SQL(TXT)
[root@mail /root]#mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 10 to server version: 5.0.22
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> use mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> GRANT ALL PRIVILEGES . *.* TO IDENTIFIED BY '123456' WITH GRANT OPTION;
Query OK, 0 rows affected (0.00 sec)
mysql>flush privileges; (刷新系统表)
本文转自 pgmia 51CTO博客,原文链接:http://blog.51cto.com/heyiyi/115772