* [Comm] vsftpd
@ 2005-08-03 6:45 Санек Самойлов
2005-08-03 10:05 ` Andrew Borodin
` (3 more replies)
0 siblings, 4 replies; 7+ messages in thread
From: Санек Самойлов @ 2005-08-03 6:45 UTC (permalink / raw)
To: community
Добрый день !
Такая проблемка !
Установил vsftpd
конфиг настроил
в xinetd
# default: off
# description: The vsftpd FTP server.
service ftp
{
disable = no
socket_type = stream
protocol = tcp
wait = no
user = root
nice = 10
rlimit_as = 500M
server = /usr/sbin/vsftpd
# server_args =
}
Но почемуто не стартует ?
Кгде копать ?
ЗАранее всем спасибо !
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Comm] vsftpd
2005-08-03 6:45 [Comm] vsftpd Санек Самойлов
@ 2005-08-03 10:05 ` Andrew Borodin
2005-08-03 10:22 ` Alexander Vasiliev
` (2 subsequent siblings)
3 siblings, 0 replies; 7+ messages in thread
From: Andrew Borodin @ 2005-08-03 10:05 UTC (permalink / raw)
To: community
On Wed, Aug 03, 2005 at 10:45:04AM +0400, Санек Самойлов wrote:
> # description: The vsftpd FTP server.
> service ftp
> {
> disable = no
> socket_type = stream
> protocol = tcp
> wait = no
> user = root
> nice = 10
> rlimit_as = 500M
> server = /usr/sbin/vsftpd
> # server_args =
> Но почемуто не стартует ?
> Кгде копать ?
По умолчанию xinetd пускает только с 127.0.0.1 (параметр
only_from в /etc/xinted.conf). Добавьте в конфиг vsftpd only_from
с нужным адресом.
--
С уважением,
А. Бородин.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Comm] vsftpd
2005-08-03 6:45 [Comm] vsftpd Санек Самойлов
2005-08-03 10:05 ` Andrew Borodin
@ 2005-08-03 10:22 ` Alexander Vasiliev
2005-08-04 6:51 ` Andrew Chernov
2005-08-03 11:28 ` [Comm] vsftpd Grigory Batalov
2005-08-03 12:05 ` Michael Shigorin
3 siblings, 1 reply; 7+ messages in thread
From: Alexander Vasiliev @ 2005-08-03 10:22 UTC (permalink / raw)
To: community
On Wed, Aug 03, 2005 at 10:45:04AM +0400, Санек Самойлов wrote:
> Добрый день !
>
> Такая проблемка !
> Установил vsftpd
> конфиг настроил
>
> Но почемуто не стартует ?
> Кгде копать ?
В /etc/xinetd.conf прописано
only_from = 127.0.0.1
Нужно в /etc/xinetd.d/vsftpd
прописать нужное вам.
--
Александр Васильев
ЗАО "Таском"
vav@tascom.ru
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Comm] Re: vsftpd
2005-08-03 6:45 [Comm] vsftpd Санек Самойлов
2005-08-03 10:05 ` Andrew Borodin
2005-08-03 10:22 ` Alexander Vasiliev
@ 2005-08-03 11:28 ` Grigory Batalov
2005-08-03 12:05 ` Michael Shigorin
3 siblings, 0 replies; 7+ messages in thread
From: Grigory Batalov @ 2005-08-03 11:28 UTC (permalink / raw)
To: community
On Wed, 03 Aug 2005 10:45:04 +0400
"Санек Самойлов" <sanykshelny@rambler.ru> wrote:
> Такая проблемка !
> Установил vsftpd
> конфиг настроил
>
> в xinetd
> # default: off
> # description: The vsftpd FTP server.
> service ftp
> {
> disable = no
> socket_type = stream
> protocol = tcp
> wait = no
> user = root
> nice = 10
> rlimit_as = 500M
> server = /usr/sbin/vsftpd
> # server_args =
> }
>
> Но почемуто не стартует ?
> Кгде копать ?
# service xinetd restart
При этом процесса vsftpd не будет, пока не появятся
соединения по ftp.
--
Григорий Баталов,
системный администратор
ЗАО "Ланит-Терком",
тел. +7 (812) 428 48 96,
доб. 159
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Comm] Re: vsftpd
2005-08-03 6:45 [Comm] vsftpd Санек Самойлов
` (2 preceding siblings ...)
2005-08-03 11:28 ` [Comm] vsftpd Grigory Batalov
@ 2005-08-03 12:05 ` Michael Shigorin
3 siblings, 0 replies; 7+ messages in thread
From: Michael Shigorin @ 2005-08-03 12:05 UTC (permalink / raw)
To: Санек
Самойлов
Cc: community
On Wed, Aug 03, 2005 at 10:45:04AM +0400, Санек Самойлов wrote:
> Но почемуто не стартует ?
service xinetd status
?
> Кгде копать ?
Вам же lav@ дал ссылку.
--
---- WBR, Michael Shigorin <mike@altlinux.ru>
------ Linux.Kiev http://www.linux.kiev.ua/
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Comm] vsftpd
2005-08-03 10:22 ` Alexander Vasiliev
@ 2005-08-04 6:51 ` Andrew Chernov
2005-08-04 7:31 ` Mike Lykov
0 siblings, 1 reply; 7+ messages in thread
From: Andrew Chernov @ 2005-08-04 6:51 UTC (permalink / raw)
To: community
> В /etc/xinetd.conf прописано
> only_from = 127.0.0.1
>
> Нужно в /etc/xinetd.d/vsftpd
> прописать нужное вам.
Чтобы пускало отовсюду - only_from=0.0.0.0
--
WBR, Andrew Chernov
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Comm] vsftpd
2005-08-04 6:51 ` Andrew Chernov
@ 2005-08-04 7:31 ` Mike Lykov
0 siblings, 0 replies; 7+ messages in thread
From: Mike Lykov @ 2005-08-04 7:31 UTC (permalink / raw)
To: community
В сообщении от Четверг 04 Август 2005 11:51 Andrew Chernov написал:
> Чтобы пускало отовсюду - only_from=0.0.0.0
а лучше прочитать man xinetd.conf - там все написано на эту тему.
--
Mike Lykov
Samara, "Vesna" parfum company, System administrator
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2005-08-04 7:31 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-08-03 6:45 [Comm] vsftpd Санек Самойлов
2005-08-03 10:05 ` Andrew Borodin
2005-08-03 10:22 ` Alexander Vasiliev
2005-08-04 6:51 ` Andrew Chernov
2005-08-04 7:31 ` Mike Lykov
2005-08-03 11:28 ` [Comm] vsftpd Grigory Batalov
2005-08-03 12:05 ` Michael Shigorin
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