mysql
July 19, 2013, NixUSer, 0
To export a MySQL database, access your server via ssh and run the following commands: # mysqldump -u username -p database_name > database.sql To import a MySQL Database, run the command: # mysql -u username -p database_name < database.sql That’s it 🙂
Like this:
Like Loading...
July 1, 2013, NixUSer, 0
When I tried to restore an account I got the error: Sorry, a mysql user with the name x already exists. I know that the user does not exists on the server. To fix this issue, ran the cPanel script. /scripts/updateuserdatacache And the error is gone and I was able to restore the account without More
Like this:
Like Loading...