If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
I would like to transfer MYSQL server from one machine to another machine, any faster way so that all user right setting is copy over to new machine also?
After copying across the database make sure that you also make a copy of the database "mysql" which contains the users and the privileges.
From the MySQL documentation:
Quote:
Do not forget to copy the mysql database because that is where the grant tables are stored. You might have to run commands as the MySQL root user on the new machine until you have the mysql database in place.
After you import the mysql database on the new machine, execute mysqladmin flush-privileges so that the server reloads the grant table information.