User Tools

Site Tools


backup_database_from_remote_server

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
backup_database_from_remote_server [2016/08/03 08:54] walkeradminbackup_database_from_remote_server [2023/03/09 22:35] (current) – external edit 127.0.0.1
Line 9: Line 9:
 \\  \\ 
 \\  \\ 
-1. Your user must have the rights (normally user accounts are localhost limited) I created a user with global rights '%'\\ +1. Your user must have the rights (normally user accounts are localhost limited) I created a user with global rights '%'
 \\  \\ 
-Comment these lines in /etc/mysql/my.cnf\\  +\\  
-skip-networking\\  +<file> 
-bind-address = 127.0.0.1\\ +CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password'; 
 + 
 +  EG: CREATE USER 'admin'@'%' IDENTIFIED BY 'password'; 
 +   
 +Once created, the user requires permissions 
 +   
 +  GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost'; 
 +   
 +If you want to be able to access the server from anywhere, replace localhost with % 
 +   
 +  GRANT ALL PRIVILEGES ON * . * TO 'admin'@'%'; 
 +</file> 
 +\\  
 +\\  
 +<color red> SUPER IMPORTANT</color> Comment these lines in /etc/mysql/my.cnf\\ <>OR SQL WILL ONLY ACCEPT LOCAL CONNECTIONS</color> 
 +\\  
 +\\  
 +    skip-networking\\  
 +    bind-address = 127.0.0.1\\ 
 \\  \\ 
 2. You must have rights to write to the target directory (easily overlooked)\\  2. You must have rights to write to the target directory (easily overlooked)\\ 
backup_database_from_remote_server.1470210879.txt.gz · Last modified: 2023/03/09 22:35 (external edit)