How to backup your website through SSH command line?

Dr. McKay

Well-known member
Registered
Joined
Nov 26, 2016
Messages
583
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,913
Replies
23
Views
15,129
Replies
1
Views
2,813
Newer Threads
Replies
10
Views
6,757
Replies
10
Views
8,399
Replies
0
Views
1,759
Replies
0
Views
1,785
Latest Threads
Replies
0
Views
126
Replies
1
Views
120
Replies
2
Views
135
Replies
1
Views
139
Recommended Threads
Replies
5
Views
2,472
Replies
0
Views
3,266
Replies
22
Views
14,983
Replies
17
Views
7,293

Latest postsNew threads

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