How to backup your website through SSH command line?

Dr. McKay

Well-known member
Registered
Joined
Nov 26, 2016
Messages
565
Points
28
Normally I have to use both SSH and Phpmyadmin to backup files, folders, mysql databases. I am wondering if there is a way only use SSH command line to backup whole my website files and databases?
 

DenisMNE

Well-known member
Collaborate
Registered
Joined
Apr 11, 2018
Messages
108
Points
18
I did some research and I might be able to provide you an answer for it.
It might be pretty simple, so please check it out and let me know did it work.
Hope it helps :

download.png
 

Chris Worner

Well-known member
Registered
Joined
Apr 15, 2016
Messages
612
Points
28
Chris Worner
These commands are just to compress your current files and folders in public_html folder, It didn't include databases of your websites in it. If you just are doing that, your backup is not completed.
 

VirtuBox

Well-known member
Registered
Joined
May 3, 2016
Messages
1,622
Points
83
Normally I have to use both SSH and Phpmyadmin to backup files, folders, mysql databases. I am wondering if there is a way only use SSH command line to backup whole my website files and databases?
To backup a database, you just need to run

Bash:
mysqldump -u database_user -p database_name > database_dump.sql
Then you can make an archive with all your files with tar :
Bash:
# To extract an uncompressed archive:
tar -xvf /path/to/foo.tar

# To create an uncompressed archive:
tar -cvf /path/to/foo.tar /path/to/foo/

# To create a .gz archive:
tar -czvf /path/to/foo.tgz /path/to/foo/

# To create a .bz2 archive:
tar -cjvf /path/to/foo.tgz /path/to/foo/
 
Older Threads
Replies
0
Views
1,224
Replies
23
Views
8,582
Replies
1
Views
1,812
Newer Threads
Replies
10
Views
4,002
Replies
10
Views
5,401
Replies
0
Views
1,072
Replies
0
Views
1,112

Latest Hosting OffersNew Reviews

Sponsors

Tag Cloud

You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an alternative browser.

Top