Ask a Question related to Linux Setup, Configuration & Administration, Design and Development.

  1. #1

    Default Re: Starting vsftpd

    On Mon, 30 Jun 2003 Todd Cary wrote:
    >My son sent me a computer configured with RH 9 and vsftpd is
    >installed, however it does not appear to be started (ps -A | grep
    >"vsftpd") produces nothing.
    ps wont show the process coz its started by xinetd. Try

    netstat -a
    netstat -a |grep ftp
    >How can I check to see if xinetd is starting vsftpd ...
    See above and/or 'telnet 127.0.0.1 21'. It should ideally connect.
    >and how does one configure xinetd to "start" vsftpd?
    Edit /etc/xinetd.d/vsftpd to say 'disable = no' if it's yes and restart
    xinetd by '/etc/init.d/xinetd restart'
    >Sorry for the simplistic questions, but I am slowly learning some of
    >the in's and out's of Linux....
    No Problemo
    Vwakes Guest

  2. Similar Questions and Discussions

    1. vsftpd
      Does anyone know if vsftpd can be configured to return the filename when the anonymous user types "ls <file name>" without making the directory...
    2. vsftpd questions
      Hi all! I have two questions about vsftpd. Could someone teach me how to create virtual user account in vsftpd? I tried to follow the...
    3. vsftpd , need help with custom ports. FTP FTP where is thy sting?
      I have local net at home behind a firewall.+ DSL. Linksys BES41 something. have 2 servers ,both with working httpd web sets. port 80 and port 81...
    4. vsftpd setup
      On Sun, 20 Jul 2003 04:25:30 -0700, Wenjie wrote: Did you check the configuration files vsftpd.ftpusers and vsftpd.user_list? By default, vsftp...
    5. SSH tunneling to vsftpd not working RH8
      Sam Nichols wrote: May I suggest that you proceed directly to an SSH client with a chroot cage on the server to get the same sort safe...
  3. #2

    Default Re: Starting vsftpd

    <<<
    to say 'disable = no'
    >>>
    So simple! Missed that after finding the vsftpd file and moving into
    the xinetd.d directory. Like most things with Linux, it is simple *and*
    a text editor does the job. It is just a matter of learning how the
    "simple" peieces fit together!

    Many thanks....

    Todd


    Vwakes wrote:
    > On Mon, 30 Jun 2003 Todd Cary wrote:
    >
    > >My son sent me a computer configured with RH 9 and vsftpd is
    > >installed, however it does not appear to be started (ps -A | grep
    > >"vsftpd") produces nothing.
    >
    > ps wont show the process coz its started by xinetd. Try
    >
    > netstat -a
    > netstat -a |grep ftp
    >
    > >How can I check to see if xinetd is starting vsftpd ...
    >
    > See above and/or 'telnet 127.0.0.1 21'. It should ideally connect.
    >
    > >and how does one configure xinetd to "start" vsftpd?
    >
    > Edit /etc/xinetd.d/vsftpd to say 'disable = no' if it's yes and restart
    > xinetd by '/etc/init.d/xinetd restart'
    >
    > >Sorry for the simplistic questions, but I am slowly learning some of
    > >the in's and out's of Linux....
    >
    > No Problemo
    Todd Cary Guest

  4. #3

    Default Re: Starting vsftpd

    Todd Cary wrote:
    > My son sent me a computer configured with RH 9 and vsftpd is installed,
    > however it does not appear to be started (ps -A | grep "vsftpd")
    > produces nothing.
    >
    > How can I check to see if xinetd is starting vsftpd and how does one
    > configure xinetd to "start" vsftpd?
    >
    > Sorry for the simplistic questions, but I am slowly learning some of the
    > in's and out's of Linux....
    >
    > Todd
    >
    "ftp localhost"?

    Also, "/sbin/chkconfig --list" to give you the full list of enabled and
    disabled services?


    Nico Kadel-Garcia Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139