Find the answer to your Linux question:
Results 1 to 3 of 3
hi all; i m using RHEL5 on my server machine and open suse 10 on my client machine.both system ping each other,firewall is off of my server machine,i put a ...
  1. #1
    Just Joined!
    Join Date
    Jan 2010
    Posts
    21

    Post ftp problem

    hi all;
    i m using RHEL5 on my server machine and open suse 10 on my client machine.both system ping each other,firewall is off of my server machine,i put a file from my client to my server machine using scp command but ftp command is not working when i want to open connection i receive a message "connection refused".what can be the issue?

  2. #2
    Linux Guru Rubberman's Avatar
    Join Date
    Apr 2009
    Location
    I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
    Posts
    8,974
    You need to enable ftp in the xinetd configuration files. For example, for gssftp the configuration find /etc/xinetd.d/gssftp looks like this by default:
    Code:
    # default: off
    # description: The kerberized FTP server accepts FTP connections \
    #              that can be authenticated with Kerberos 5.
    service ftp
    {
            flags           = REUSE
            socket_type     = stream
            wait            = no
            user            = root
            server          = /usr/kerberos/sbin/ftpd
            server_args     = -l -a
            log_on_failure  += USERID
            disable         = yes
    }
    To enable this service, edit the file and change the line disable = yes to disable = no, then restart your xinetd service.
    Sometimes, real fast is almost as good as real time.
    Just remember, Semper Gumbi - always be flexible!

  3. #3
    Just Joined!
    Join Date
    Jan 2010
    Posts
    21

    Post ftp issue

    hi dear;
    your solution was successful.I was loged in on my system using my email address as a password but when i enter the command to get or put the file it gave me a message that you must log in in to passive mod.it was yesterday.

    today when i log in to my system using my email address as password but it give me message log in fail.ftp deamon is also running.

    please give me solution in both cases

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...