Question:
migrating mysql to other server. How to migrate varchar(16) char encrypted password field ?
shalu1873
2006-05-26 18:35:36 UTC
We are migrating mysql database to other server. we have a users table where the password field ( varchar(16) )is encryted based on encryption key. How do I transfer this data to other database ? How do make sure that data is transferred correctly. Having problems..
Three answers:
CS3
2006-06-09 00:58:01 UTC
well; 2 solutions;



(*) run mysqldump against the db and redirect it to a .sql file; then restore it using mysql



eg:

mysqldump -u root db_name > somefile.sql

mysql -u root < somefile.sql



(*) this is a wild method: copy the "your_db_name" folder; usually in "data" folder of mySQL to the new db server; [ not advisable if the table is accessible for a particular role ]
techyashish
2006-06-01 18:18:22 UTC
hi



password field encrypted ? or value inside password field encrypted if dat is the case then there is no problem shifting the database to other server
kirbyrenegade
2006-05-26 18:38:58 UTC
hum a password gate if thats what your looking for go to bravenet.com


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...