ftp client does not work after new installation

hedgefund

New member
Joined
Sep 4, 2008
Messages
4
Hi,

After I install DA on a new server (CentOS5), I can't do ftp to other locally or to other servers, this is what I got:

ftp localhost
KERBEROS_V4 rejected as an authentication type
ftp: relocation error: ftp: symbol krb5int_labeled_fopen, version krb5support_0_MIT not defined in file libkrb5support.so.0 with link time reference

Than I tried to install krb5-libs, I got another error:

yum install krb5-libs.i386 krb5-devel

ERROR with rpm_check_debug vs depsolve:
Package krb5-workstation needs krb5-libs = 1.6.1-25.el5, this is not available.

Please help

Thanks
 
I don't think this is a CentOS5 issue; ftp works for us:
Code:
# ftp localhost
Connected to localhost.namelessnet.net.
220 ProFTPD 1.3.1 Server ready.
500 AUTH not understood
500 AUTH not understood
KERBEROS_V4 rejected as an authentication type
Name (localhost:root):
I do have krb5-libs installed:
Code:
# rpm -qa | grep krb5-libs
krb5-libs-1.6.1-25.el5
#

I also have krb5-devel installed.
However I think you should be trying to install krb5-libs this way, without platform or version information:
Code:
# yum install krb5-libs
Let us know if that works.

Jeff
 
yum install krb5-libs fails

I've run into the same problem and notice that your suggestion to run

yum install krb5-libs

fails

ERROR with rpm_check_debug vs depsolve:
Package krb5-workstation needs krb5-libs = 1.6.1-25.el5, this is not available.

Also running CentOS 5.2 32 bit.
 
krb5-devel obsolete?

A little googling makes it look like krb5-libs is obsolete and krb5-devel fails to install because krb5-libs isn't installed
 
Problem solved

Type

yum update

to get the latest stuff and the bad library is replaced with one that works
 
The same situation is here

try to ftp

# ftp
ftp> open *****.com
Connected to *****.com.
220---------- Welcome to Pure-FTPd [TLS] ----------
220-You are user number 2 of 50 allowed.
220-Local time is now 04:27. Server port: 21.
220 You will be disconnected after 15 minutes of inactivity.
500 This security scheme is not implemented
500 This security scheme is not implemented
KERBEROS_V4 rejected as an authentication type
ftp: relocation error: ftp: symbol krb5int_labeled_fopen, version krb5support_0_MIT not defined in file libkrb5support.so.0 with link time reference

Check krb5-libs
Code:
#rpm -qa | grep krb5-libs
krb5-libs-1.5-17


Code:
#yum install krb5-libs

----
Running rpm_check_debug
ERROR with rpm_check_debug vs depsolve:
Package krb5-workstation needs krb5-libs = 1.6.1-25.el5_2.2, this is not available.
Complete!
and the last try to yum update and got


Code:
#yum update

--> Finished Dependency Resolution
Error: Missing Dependency: bind = 30:9.3.4-6.0.3.P1.el5_2 is needed by package bind-chroot



What i'm doing wrong?
 
Last edited:
Why are you trying to install bind-chroot? You are not supposed to have that installed.
 
Back
Top