Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


error starting vsftpd!
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

error starting vsftpd!

johancjohanc Member
edited March 2013 in General

I have installed vsftpd on my linux vps:

i have setup it also but when i tried both
service vsftpd start
and service vsftpd restart
i say´s that the vsftpd server starting, but when i try service vsftpd status it says:

vsftpd is not running

Please help!

Here is my vsftpd.conf file:

http://pastebin.com/ykT9JYQH

Comments

  • Pastebin your error log.

  • @NHNahian where can i find the error log (path)?

  • Should be /var/log/vsftpd.log ?

  • johancjohanc Member
    edited March 2013

    i find it but it was empty

  • Do you get any error when you restart vsftp?

  • johancjohanc Member
    edited March 2013

    i got nothing, the .log file doesn´t updates after i restart vsftpd...

  • NickMNickM Member

    Check /var/log/syslog for any errors

  • Mar  1 18:42:54 billigelektronik proftpd[17493]: error: duplicate fs paths not allowed: '/'
    Mar  1 18:42:54 billigelektronik proftpd[17493]: mod_facl/0.4: error registering 'facl' FS: Operation not permitted
    Mar  1 18:42:54 billigelektronik proftpd[17493]: mod_dso/0.5: module 'mod_facl.c' failed to initialize
    Mar  1 18:42:54 billigelektronik proftpd[17493]: Fatal: LoadModule: error loading module 'mod_facl.c': Operation not permitted on line 86 of '/etc/proftpd/modules.conf'
    Mar  1 18:46:05 billigelektronik proftpd[22124]: error: duplicate fs paths not allowed: '/'
    Mar  1 18:46:05 billigelektronik proftpd[22124]: mod_facl/0.4: error registering 'facl' FS: Operation not permitted
    Mar  1 18:46:05 billigelektronik proftpd[22124]: mod_dso/0.5: module 'mod_facl.c' failed to initialize
    Mar  1 18:46:05 billigelektronik proftpd[22124]: Fatal: LoadModule: error loading module 'mod_facl.c': Operation not permitted on line 86 of '/etc/proftpd/modules.conf'
    Mar  1 18:49:18 billigelektronik proftpd[22206]: error: duplicate fs paths not allowed: '/'
    Mar  1 18:49:18 billigelektronik proftpd[22206]: mod_facl/0.4: error registering 'facl' FS: Operation not permitted
    Mar  1 18:49:18 billigelektronik proftpd[22206]: mod_dso/0.5: module 'mod_facl.c' failed to initialize
    Mar  1 18:49:18 billigelektronik proftpd[22206]: Fatal: LoadModule: error loading module 'mod_facl.c': Operation not permitted on line 86 of '/etc/proftpd/modules.conf'
    Mar  1 18:51:29 billigelektronik proftpd[22274]: error: duplicate fs paths not allowed: '/'
    Mar  1 18:51:29 billigelektronik proftpd[22274]: mod_facl/0.4: error registering 'facl' FS: Operation not permitted
    Mar  1 18:51:29 billigelektronik proftpd[22274]: mod_dso/0.5: module 'mod_facl.c' failed to initialize
    Mar  1 18:51:29 billigelektronik proftpd[22274]: Fatal: LoadModule: error loading module 'mod_facl.c': Operation not permitted on line 86 of '/etc/proftpd/modules.conf'
    
  • @NHNahian i used Proftpd for some hours ago, but now i have removed it and i installed vsftpd instead of proftpd.

  • My favorite troubleshooting option, try restarting your vps.

  • MicrolinuxMicrolinux Member
    edited March 2013

    netstat -an | grep 21

    Anything already listening on port 21?

    #nopriv_user=ftpsecure

    The above doesn't have anything to do with your problem, but you should not be running vsftpd as root -- I would highly recommend running as unprivileged user.

  • agoldenbergagoldenberg Member, Host Rep

    Take out archives which is sitting net to write_enable

  • Depending on how you removed it, proftpd may still be running.

    netstat -ltn

    to see listening tcp servers.

    ps aux

    to see current processes.

    If something is listening on port 21 -- proftpd in the process list? -- kill it off:

    killall proftpd

    Then try starting vsftpd.

    If you still have no joy then there's something bad in your vsftpd.com file.

  • @sleddog said: to see listening tcp servers

    this

  • @Microlinux
    nothing showing up when i type: netstat -an | grep 21

    @sleddog
    nothing listening on port 21 when i type netstat -ltn and ps aux.
    Proftpd is not in the list also.

  • Start vsftpd manually from shell and see what it tells. Supply config path, debug/verbose level if possible (man vsftpd).

  • @nstorm
    I got follow when i start vsftpd from shell using the service proftpd start command:
    Starting FTP server: vsftpd

    After that i try to connect to the ftp using port 21 but it doesn´t work.

    I type in service vsftpd status and it says that vsftpd is not running.

    What do mean with config path, debug/verbose level i don´t understand it?

  • @johanc if you need help send me a PM this is peanuts

  • I got follow when i start vsftpd from shell using the service proftpd start command

    I hope that is just a typo.

    What do mean with config path, debug/verbose level i don´t understand it?

    You start it without service scripts. Just run vstftpd from shell to get its output direcly to the console.

  • mikhomikho Member, Host Rep

    @natestamm
    If this is peanuts, please post the solution

Sign In or Register to comment.