Page 1 of 2
Download backup not working.
Posted: Mon Jan 20, 2014 10:53 pm
by ODEKK
I have installed VestaCp on a new VPS. I like it alot. Thank you.
One issue: I can't seem to use the "download" button within the backup panel, to download a backup. Clicking the bottom results in a webpage stating "page not found".
Any ideas?
Thanks in advance for your assistance.
Kevin
Re: Download backup not working.
Posted: Tue Jan 21, 2014 9:11 am
by imperio
Hello Kevin
on our test server, this problem does not exist
What is your version of panel ?
What is your operating system on the server ?
Re: Download backup not working.
Posted: Fri Jan 24, 2014 10:23 pm
by ODEKK
Sorry. I should have included that.
I am using what I think is the latest vesta Version: 0.9.8.
Installed on an Ubuntu 12.x VPS from ftpit.
I can still get the backupfile via ftp, but being able to use the download link would be awesome.
May I also put in a HUGE request for the ability to UPLOAD a backup as well? That wold be awesome.
Kevin
Re: Download backup not working.
Posted: Tue Feb 11, 2014 2:19 pm
by skid
We have already included "backup upload button" as feature request.
Thank you
Re: Download backup not working.
Posted: Sat Apr 19, 2014 9:51 pm
by watchopolis
i am using ubuntu 12.04 after updating vesta to the latest version, i cant download the backup when i click on the download button i get this page not fount (
https://myserver:8083/download/backup/? ... -04-19.tar)
but i can see the backup using ssh on my backup folder,
also i cant find the upload button, can someone pls tell me where the upload button is hidden ?
Re: Download backup not working.
Posted: Thu May 28, 2015 6:32 am
by batence
Hello, I have the same issue, I am using CentOS 6.6 x86.
Did somebody have any suggestions?
Re: Download backup not working.
Posted: Thu May 28, 2015 6:54 am
by skurudo
Yep, I have suggestion - permission and ownership.
chmod -R 775 /home/backup/
chown backup:backup /home/backup/
Re: Download backup not working.
Posted: Thu May 28, 2015 11:00 am
by batence
skurudo wrote:Yep, I have suggestion - permission and ownership.
chmod -R 775 /home/backup/
chown backup:backup /home/backup/
Yeah! That's solve my problem!
Thank you a lot! Great support!
"2015/05/28 13:55:12 [error] 1760#0: *994 open() "/backup/host.2015-05-28.tar" failed (13:
Permission denied), client: 192.168.1.5, server: _, request: "GET /download/backup/?backup=host.2015-05-28.tar HTTP/1.1", upstream: "fastcgi://unix:/var/run/vesta-php.sock", host: "192.168.1.30:8083""
I have already check nginx error log but I did not think that the problem can be permissions and ownership issue.
Thank you!
Re: Download backup not working.
Posted: Thu May 28, 2015 11:03 am
by skurudo
Hmm... your log say about permission problem ;)
This string:
failed (13: Permission denied),
It's happen sometimes.
Re: Download backup not working.
Posted: Thu May 28, 2015 11:08 am
by batence
# ls -la /home/
drwxr-xr-x. 6 root root 4096 May 28 09:38 .
dr-xr-xr-x. 24 root root 4096 May 5 20:11 ..
drwx--x--x 6 admin admin 4096 Apr 11 17:06 admin
lrwxrwxrwx 1 root root 8 May 28 09:38 backup -> /backup/
drwx--x--x 6 host host 4096 Apr 12 00:46 host
drwxr-xr-x 2 opc_op opcgrp 4096 May 3 22:46 opc_op
# ls -la /home/backup
lrwxrwxrwx 1 root root 8 May 28 09:38 /home/backup -> /backup/
Btw I have created symbolic link from /home/backup to /backup because this is another my partition only for backups.
# ls -la /backup
drwxrwxr-x. 2 backup backup 4096 May 28 13:49 .
dr-xr-xr-x. 24 root root 4096 May 5 20:11 ..
-rwxrwxr-x 1 admin host 657182720 May 28 09:54 host.2015-05-28.tar
But after your suggestion I can download backups now. Thanks dude! :)