ALT Linux Community general discussions
 help / color / mirror / Atom feed
* Re: [Comm] FTP
  @ 2003-12-14 22:57 ` Lee Oleg V.
  2003-12-14 23:29   ` Alexandr
  0 siblings, 1 reply; 5+ messages in thread
From: Lee Oleg V. @ 2003-12-14 22:57 UTC (permalink / raw)
  To: community

В Пнд, 15.12.2003, в 01:59, Alexandr пишет:
> Установил FTP сервер - vsftpd, но он не хочет запускаться, пишет:
> [root@Server root]# service vsftpd start
> service: unrecognized service: vsftpd
> [root@Server root]# vsftpd
> 500 OOPS: vsftpd: does not run standalone, must be started from inetd
> 
> Чего ему не хватает?

Этот демон запускается не самостоятельно, а через xinet.d,
пропишите в конфигурации xinet.d запуск vsftpd и перезапустите xinet.d
> 
> ______________________________________________________________________
> _______________________________________________
> Community mailing list
> Community@altlinux.ru
> http://www.altlinux.ru/mailman/listinfo/community

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Comm] FTP
  2003-12-14 22:57 ` [Comm] FTP Lee Oleg V.
@ 2003-12-14 23:29   ` Alexandr
  2003-12-14 23:39     ` Lee Oleg V.
  2003-12-14 23:43     ` Alexandr
  0 siblings, 2 replies; 5+ messages in thread
From: Alexandr @ 2003-12-14 23:29 UTC (permalink / raw)
  To: community

> В Пнд, 15.12.2003, в 01:59, Alexandr пишет:
> > Установил FTP сервер - vsftpd, но он не хочет запускаться, пишет:
> > [root@Server root]# service vsftpd start
> > service: unrecognized service: vsftpd
> > [root@Server root]# vsftpd
> > 500 OOPS: vsftpd: does not run standalone, must be started from inetd
> >
> > Чего ему не хватает?
>
> Этот демон запускается не самостоятельно, а через xinet.d,
> пропишите в конфигурации xinet.d запуск vsftpd и перезапустите xinet.d

В директории /etc/xinetd.d есть файл vsftpd с содержимым:
# default: off
# description: The vsftpd FTP server.
service ftp
{
        disable = no
        socket_type     = stream
        protocol        = tcp
        wait            = no
        user            = root
        nice            = 10
        rlimit_as       = 16M
        server          = /usr/sbin/vsftpd
#       server_args     =
}

сервис xinetd запущен, но при запуске пишет тоже самое:
[root@Server xinetd.d]# vsftpd
500 OOPS: vsftpd: does not run standalone, must be started from inetd



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Comm] FTP
  2003-12-14 23:29   ` Alexandr
@ 2003-12-14 23:39     ` Lee Oleg V.
  2003-12-14 23:43     ` Alexandr
  1 sibling, 0 replies; 5+ messages in thread
From: Lee Oleg V. @ 2003-12-14 23:39 UTC (permalink / raw)
  To: community

В Пнд, 15.12.2003, в 02:29, Alexandr пишет:

> сервис xinetd запущен, но при запуске пишет тоже самое:
> [root@Server xinetd.d]# vsftpd
> 500 OOPS: vsftpd: does not run standalone, must be started from inetd

Так как демон vsftpd запускается только при обращинии к xinetd, то у вас
не получится запустить его самостоятельно. Просто перезапустите xinetd и
проверяйте работу ftp

> _______________________________________________
> Community mailing list
> Community@altlinux.ru
> http://www.altlinux.ru/mailman/listinfo/community

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Comm] FTP
  2003-12-14 23:29   ` Alexandr
  2003-12-14 23:39     ` Lee Oleg V.
@ 2003-12-14 23:43     ` Alexandr
  2003-12-15 22:42       ` [Comm] vsftpd Alexandr
  1 sibling, 1 reply; 5+ messages in thread
From: Alexandr @ 2003-12-14 23:43 UTC (permalink / raw)
  To: community

> > В Пнд, 15.12.2003, в 01:59, Alexandr пишет:
> > > Установил FTP сервер - vsftpd, но он не хочет запускаться, пишет:
> > > [root@Server root]# service vsftpd start
> > > service: unrecognized service: vsftpd
> > > [root@Server root]# vsftpd
> > > 500 OOPS: vsftpd: does not run standalone, must be started from inetd
> > >
> > > Чего ему не хватает?
> >
> > Этот демон запускается не самостоятельно, а через xinet.d,
> > пропишите в конфигурации xinet.d запуск vsftpd и перезапустите xinet.d
>
> В директории /etc/xinetd.d есть файл vsftpd с содержимым:
> # default: off
> # description: The vsftpd FTP server.
> service ftp
> {
>         disable = no
>         socket_type     = stream
>         protocol        = tcp
>         wait            = no
>         user            = root
>         nice            = 10
>         rlimit_as       = 16M
>         server          = /usr/sbin/vsftpd
> #       server_args     =
> }
>
> сервис xinetd запущен, но при запуске пишет тоже самое:
> [root@Server xinetd.d]# vsftpd
> 500 OOPS: vsftpd: does not run standalone, must be started from inetd

Нашел!
В файле /etc/xinetd.d было only_from = 127.0.0.0
Переправил на only_from = 192.168.0.0 и FTP сервер заработал!



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Comm] vsftpd
  2003-12-14 23:43     ` Alexandr
@ 2003-12-15 22:42       ` Alexandr
  0 siblings, 0 replies; 5+ messages in thread
From: Alexandr @ 2003-12-15 22:42 UTC (permalink / raw)
  To: community

Копирую из Windows на ftp(vsftpd) файл с русским именем, в ftp клиенте
Windows'а файл отображается нормально, а в ftp клиенте Linux'a отображается
с не правильной кодировкой.
Можно ли это исправить или так и должно быть?



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2003-12-15 22:42 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-12-14 22:57 ` [Comm] FTP Lee Oleg V.
2003-12-14 23:29   ` Alexandr
2003-12-14 23:39     ` Lee Oleg V.
2003-12-14 23:43     ` Alexandr
2003-12-15 22:42       ` [Comm] vsftpd Alexandr

ALT Linux Community general discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
		mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
	public-inbox-index community

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.community


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git