Cant't create admin backup/transfer with ftp

Jaska

New member
Joined
May 22, 2015
Messages
6
I 'm trying to create admin backup with ftp, but get this error:

Code:
Error during Backup Creation

Details

/usr/bin/ncftpls returned error code 1
FTP information invalid.

Tested with other ftp hosts and get same error. Login credentials are right and port 21 is allowed.
 
Is the ougoing port 21 opened aswell?

What if you manually test to connect to a remote FTP server from your server?

Regards
 
All is working from shell

Is the ougoing port 21 opened aswell?

What if you manually test to connect to a remote FTP server from your server?

Regards

All is working from shell:

Code:
[root@serveris ~]# ncftp -u xxxxx -p xxxxxx ftp://87.246.xxx.xxx
NcFTP 3.2.5 (Feb 02, 2011) by Mike Gleason (http://www.NcFTP.com/contact/).
Connecting to 87.246.xxx.xxx...
Microsoft FTP Service
Logging in...
User logged in.
Logged in to 87.246.xxx.xxx.
Current remote directory is /.
ncftp / > mkdir test
ncftp / > ls -l
d---------   1 ftpuser  ftpusers            0 May 22 13:21 test
ncftp / >
[root@serveris ~]#
 
From shell all is working

Is the ougoing port 21 opened aswell?

What if you manually test to connect to a remote FTP server from your server?

Regards

Code:
[root@serveris ~]# ncftp -u xxxxx -p xxxxxx ftp://87.246.xxx.xxx
NcFTP 3.2.5 (Feb 02, 2011) by Mike Gleason (http://www.NcFTP.com/contact/).
Connecting to 87.246.xxx.xxx...
Microsoft FTP Service
Logging in...
User logged in.
Logged in to 87.246.xxx.xxx.
Current remote directory is /.
ncftp / > mkdir test
ncftp / > ls -l
d---------   1 ftpuser  ftpusers            0 May 22 13:21 test
ncftp / >
 
admin backup/transfer bug

System backup works with same ftp settings, pls fix admin backup/transfer bug.
 
And from shell all is working:

Code:
[root@xxxx ~]# ncftp -u xxxxx -p xxxxx ftp://87.246.xxx.xxx
NcFTP 3.2.5 (Feb 02, 2011) by Mike Gleason (http://www.NcFTP.com/contact/).
Connecting to 87.246.xxx.xxx...
Microsoft FTP Service
Logging in...
User logged in.
Logged in to 87.246.xxx.xxx.
Current remote directory is /.
ncftp / > mkdir testthis
ncftp / > ls -l
d---------   1 ftpuser  ftpusers            0 May 25 13:11 testthis
ncftp / >
 
You should try to run DirectAdmin in debug mode (http://help.directadmin.com/item.php?id=293) and run a manual backup with FTP remote uplaod.

With that you may have more detailed information on why is happening.

Also, in your last reply you did crate a folder, but i'd suggested you to try to upload a bigger file (big as a backup file).

Regards
 
You should try to run DirectAdmin in debug mode (http://help.directadmin.com/item.php?id=293) and run a manual backup with FTP remote uplaod.

With that you may have more detailed information on why is happening.

Also, in your last reply you did crate a folder, but i'd suggested you to try to upload a bigger file (big as a backup file).

Regards

Thx for help.
This was permission problem with home/tmp directory.
fixed with:
Code:
chmod -R 1777 /home/tmp
 
Back
Top