ALT Linux Community general discussions
 help / color / mirror / Atom feed
* [mdk-re] ProFTPD
  @ 2001-09-21  0:18 ` Dmitry Yuroff
  2001-09-21  6:43   ` Russu V.F.
                     ` (2 more replies)
  0 siblings, 3 replies; 12+ messages in thread
From: Dmitry Yuroff @ 2001-09-21  0:18 UTC (permalink / raw)
  To: mandrake-russian

        Если кто нибудь имел дело с настройкой ProFTPD -1.2.1 подскажите пожалуйста как настроить.  Вот мой
proftpd.conf сандартный который взял с официального сайта:

# This is a basic ProFTPD configuration file (rename it to
# 'proftpd.conf' for actual use.  It establishes a single server
# and a single anonymous login.  It assumes that you have a user/group
# "nobody" and "ftp" for normal operation and anon.

ServerName                      "ProFTPD Default Installation"
ServerType                      standalone
DefaultServer                   on

# Port 21 is the standard FTP port.
Port                            21
# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask                           022

# To prevent DoS attacks, set the maximum number of child processes
# to 30.  If you need to allow more than 30 concurrent connections
# at once, simply increase this value.  Note that this ONLY works
# in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd)
MaxInstances                    30

# Set the user and group that the server normally runs at.
User                            nobody
Group                           nogroup

# Normally, we want files to be overwriteable.
<Directory /*>
  AllowOverwrite                on
</Directory>

# A basic anonymous configuration, no upload directories.
<Anonymous ~ftp>
  User                          ftp
  Group                         ftp
  # We want clients to be able to login with "anonymous" as well as "ftp"
  UserAlias                     anonymous ftp

  # Limit the maximum number of anonymous logins
  MaxClients                    10

  # We want 'welcome.msg' displayed at login, and '.message' displayed
  # in each newly chdired directory.
  DisplayLogin                  welcome.msg
  DisplayFirstChdir             .message

  # Limit WRITE everywhere in the anonymous chroot
  <Limit WRITE>
    DenyAll
  </Limit>

</Anonymous>

он с ним нормально запускается, но когда пытаюсь прицепится к нему со своей же машины пишет:

500 FTP Server shut down (Maintanance in progress)  -- please try again later.






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

* Re: [mdk-re] ProFTPD
  2001-09-21  0:18 ` [mdk-re] ProFTPD Dmitry Yuroff
@ 2001-09-21  6:43   ` Russu V.F.
  2001-09-21  7:43   ` Kostya Timoshenko
  2001-09-21  9:53   ` Maxim
  2 siblings, 0 replies; 12+ messages in thread
From: Russu V.F. @ 2001-09-21  6:43 UTC (permalink / raw)
  To: mandrake-russian-admin@altlinux.ru

Hello mandrake-russian-admin,

Thursday, September 20, 2001, 10:38:01 PM, you wrote:

> он с ним нормально запускается, но когда пытаюсь прицепится к нему со своей же машины пишет:
> 500 FTP Server shut down (Maintanance in progress)  -- please try again later.

        что в логах пишет ????


-- 
 ОП ТюменьЭнергоСпецРемонт
 Системный администратор
 Руссу В.Ф.                  e-mail: ruwa@psrp.te.ru
                             phone: (3462)76-40-56

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

* Re: [mdk-re] ProFTPD
  2001-09-21  0:18 ` [mdk-re] ProFTPD Dmitry Yuroff
  2001-09-21  6:43   ` Russu V.F.
@ 2001-09-21  7:43   ` Kostya Timoshenko
  2001-09-21  9:53   ` Maxim
  2 siblings, 0 replies; 12+ messages in thread
From: Kostya Timoshenko @ 2001-09-21  7:43 UTC (permalink / raw)
  To: mandrake-russian

On Thu, 20 Sep 2001 20:38:01 +0400
Dmitry Yuroff <yuroff@mail.ru> wrote:

> он с ним нормально запускается, но когда пытаюсь прицепится к нему со своей же машины пишет:
> 500 FTP Server shut down (Maintanance in progress)  -- please try again later.
можно дать команду service proftpd resume или удалить файл /etc/shutmsg

-- 
Kostya.
mailto:kt@tura.ru



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

* [mdk-re] ProFTPD
  2001-09-21  0:18 ` [mdk-re] ProFTPD Dmitry Yuroff
  2001-09-21  6:43   ` Russu V.F.
  2001-09-21  7:43   ` Kostya Timoshenko
@ 2001-09-21  9:53   ` Maxim
  2001-09-21 10:01     ` [mdk-re] ProFTPD Again Vlad Drakula
  2 siblings, 1 reply; 12+ messages in thread
From: Maxim @ 2001-09-21  9:53 UTC (permalink / raw)
  To: Dmitry Yuroff

Здравствуйте, Dmitry.
Вы писали 20 сентября 2001 г., 20:38:01:

DY>         Если кто нибудь имел дело с настройкой ProFTPD -1.2.1 подскажите пожалуйста как настроить.  Вот мой
DY> proftpd.conf сандартный который взял с официального сайта:

DY> # This is a basic ProFTPD configuration file (rename it to
DY> # 'proftpd.conf' for actual use.  It establishes a single server
DY> # and a single anonymous login.  It assumes that you have a user/group
DY> # "nobody" and "ftp" for normal operation and anon.

DY> ServerName                      "ProFTPD Default Installation"
DY> ServerType                      standalone
DY> DefaultServer                   on

DY> # Port 21 is the standard FTP port.
DY> Port                            21
DY> # Umask 022 is a good standard umask to prevent new dirs and files
DY> # from being group and world writable.
DY> Umask                           022

DY> # To prevent DoS attacks, set the maximum number of child processes
DY> # to 30.  If you need to allow more than 30 concurrent connections
DY> # at once, simply increase this value.  Note that this ONLY works
DY> # in standalone mode, in inetd mode you should use an inetd server
DY> # that allows you to limit maximum number of processes per service
DY> # (such as xinetd)
DY> MaxInstances                    30

DY> # Set the user and group that the server normally runs at.
DY> User                            nobody
DY> Group                           nogroup

DY> # Normally, we want files to be overwriteable.
DY> <Directory /*>
DY>   AllowOverwrite                on
DY> </Directory>

DY> # A basic anonymous configuration, no upload directories.
DY> <Anonymous ~ftp>
DY>   User                          ftp
DY>   Group                         ftp
DY>   # We want clients to be able to login with "anonymous" as well as "ftp"
DY>   UserAlias                     anonymous ftp

DY>   # Limit the maximum number of anonymous logins
DY>   MaxClients                    10

DY>   # We want 'welcome.msg' displayed at login, and '.message' displayed
DY>   # in each newly chdired directory.
DY>   DisplayLogin                  welcome.msg
DY>   DisplayFirstChdir             .message

DY>   # Limit WRITE everywhere in the anonymous chroot
DY>   <Limit WRITE>
DY>     DenyAll
DY>   </Limit>

DY> </Anonymous>

DY> он с ним нормально запускается, но когда пытаюсь прицепится к нему со своей же машины пишет:

DY> 500 FTP Server shut down (Maintanance in progress)  -- please try again later.

Вроде все нормально.
Только, обязательно запускать его как standalone?
У меня черех xinetd отлично работает.
Еще  я вообще отключил то, что было там по умолчанию и настроил пару виртуальных
серверов.
И  посмотрите  в  какую директорию вы попадаете при входе, может туда просто нет
допуска.  У меня вся проблема с начала была в этом. Ну еще <Directory> и <Limit>
надо подточить напильником.
Еще  есть  директива  RequireValidShell.  По умолчанию она установлена в on. Мне
кажется  там  не  все  чисто  с  этой  директивой.  По  крайней  мере я ее в off
перекинул.  На  всякий  случай. А вообще скорее всего смотрите безопасность. Как
правило в результате оказывается что или программа запускается под не тем юзером
или вы входите под не тем. И куда то вам доступ запрещен, вот вас и вырубает.
Но  лучше  всего закоментировать их настройки и попробовать сделать свои с нуля.
Заодно и документацию почитаете. :)

-- 
С уважением,
 Maxim                          mailto:max_conf@e-foto.ru




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

* [mdk-re] ProFTPD Again
  2001-09-21  9:53   ` Maxim
@ 2001-09-21 10:01     ` Vlad Drakula
  2001-09-21 10:24       ` Kostya Timoshenko
  0 siblings, 1 reply; 12+ messages in thread
From: Vlad Drakula @ 2001-09-21 10:01 UTC (permalink / raw)
  To: mandrake-russian

Hello All,

   Раз уж пошла такая пьянка... Никто не подскажет как сделать
   поддержку докачки на сервак? А-то у меня пара юзеров закачивающих
   по 20-30 метров за раз ругаюся...

-- 
Best regards,
 Vlad                            mailto:sib_drakula@intramail.ru




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

* Re: [mdk-re] ProFTPD Again
  2001-09-21 10:01     ` [mdk-re] ProFTPD Again Vlad Drakula
@ 2001-09-21 10:24       ` Kostya Timoshenko
  2001-09-21 10:43         ` [mdk-re] 3 штуки samba!!! Kak прибить 2 ?? Serg
  0 siblings, 1 reply; 12+ messages in thread
From: Kostya Timoshenko @ 2001-09-21 10:24 UTC (permalink / raw)
  To: mandrake-russian

On Fri, 21 Sep 2001 12:09:08 +0600
Vlad Drakula <sib_drakula@intramail.ru> wrote:

>    Раз уж пошла такая пьянка... Никто не подскажет как сделать
>    поддержку докачки на сервак? А-то у меня пара юзеров закачивающих
>    по 20-30 метров за раз ругаюся...
AllowStoreRestart on

-- 
Kostya.
mailto:kt@tura.ru



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

* [mdk-re] 3 штуки samba!!! Kak прибить 2 ??
  2001-09-21 10:24       ` Kostya Timoshenko
@ 2001-09-21 10:43         ` Serg
  2001-09-21 11:08           ` artem
  2001-09-21 11:51           ` Artem K. Jouravsky
  0 siblings, 2 replies; 12+ messages in thread
From: Serg @ 2001-09-21 10:43 UTC (permalink / raw)
  To: mandrake-russian

Здравствуйте, All.

на запрос rmp  -q -a такой ответ:
....
....
....
perl-5.6.1-alt4
apt-0.3.19cnc51-alt4
initscripts-5.49-ipl20mdk
netscape-common-4.77-alt1
grpmi-7.2-ipl31mdk
menu-2.1.5-ipl46mdk
samba-2.0.7-ipl22mdk
samba-2.0.10-alt1
samba-2.0.10-alt1

и соответственно apt-get ругается и говорит:
he package cache file is corrupted
Processing File Dependencies... Done
There are two or more versions of the package 'samba' installed in your system, which is a situation APT can't handle cleanly at the moment.
Please do one of the following:
1) Remove the older packages, leaving only one version installed; or
2) If you do want to have multiple versions of that package, add the package names to the RPM::AllowedDupPkgs option.

Error occured while processing samba (UsePackage2)
Problem with MergeList /var/lib/rpm/packages.rpm
Reading Package Lists... Error!
Невозможно прочитать список пакетов или файл статуса.

На команды, типа:
rpm -e samba-2.0.10-alt1  --force
отвечает:
rpm: принудительными могут быть только установка, обновление, удаление
исходников и spec-файла.


Как быть??

-- 
С уважением,
 Serg                          mailto:forum@vanady.ru




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

* Re: [mdk-re] 3 штуки samba!!! Kak прибить 2 ??
  2001-09-21 10:43         ` [mdk-re] 3 штуки samba!!! Kak прибить 2 ?? Serg
@ 2001-09-21 11:08           ` artem
  2001-09-21 22:13             ` Yura Gusev
  2001-09-21 11:51           ` Artem K. Jouravsky
  1 sibling, 1 reply; 12+ messages in thread
From: artem @ 2001-09-21 11:08 UTC (permalink / raw)
  To: mandrake-russian

2
> samba-2.0.7-ipl22mdk
> samba-2.0.10-alt1
> samba-2.0.10-alt1
>
самый простой вариант - убить все три
для этого надо создать файл /etc/inetd.conf
и сказать rpm -e samba --allmatches



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

* Re: [mdk-re] 3 штуки samba!!! Kak прибить 2 ??
  2001-09-21 10:43         ` [mdk-re] 3 штуки samba!!! Kak прибить 2 ?? Serg
  2001-09-21 11:08           ` artem
@ 2001-09-21 11:51           ` Artem K. Jouravsky
  2001-09-21 12:23             ` [mdk-re] Re[2]: " Serg
  1 sibling, 1 reply; 12+ messages in thread
From: Artem K. Jouravsky @ 2001-09-21 11:51 UTC (permalink / raw)
  To: mandrake-russian

Здравствуйте, Serg <forum@vanady.ru>!
От Fri, 21 Sep 2001 09:50:44 +0400 вы писали на тему [mdk-re] 3 штуки samba!!! Kak прибить 2 ??:

<skip>
> На команды, типа:
> rpm -e samba-2.0.10-alt1  --force
> отвечает:
> rpm: принудительными могут быть только установка, обновление,
> удаление
> исходников и spec-файла.
rpm -e samba-2.0.10-alt1  --notriggers

------
Best wishes,
+----------------------+--------------------------+
|  ."-.                |  Work: +7-(095)-229-4278 |
| /X  | _o.----.    _  |  ICQ:  103399444         |
|/\_  \/ /  __  \_// ) |  Artem K. Jouravsky      |
|\__)-/_/\_____)____/  |  http://www.ifirst.ru/   |
+----------------------+--------------------------+		      



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

* [mdk-re] Re[2]: [mdk-re] 3 штуки samba!!! Kak прибить 2 ??
  2001-09-21 11:51           ` Artem K. Jouravsky
@ 2001-09-21 12:23             ` Serg
  2001-09-21 12:33               ` Vyt
  0 siblings, 1 reply; 12+ messages in thread
From: Serg @ 2001-09-21 12:23 UTC (permalink / raw)
  To: Artem K. Jouravsky

Здравствуйте, Artem.

Вы писали 21 сентября 2001 г., 12:01:14:

AKJ> Здравствуйте, Serg <forum@vanady.ru>!
AKJ> От Fri, 21 Sep 2001 09:50:44 +0400 вы писали на тему [mdk-re] 3 штуки samba!!! Kak прибить 2 ??:

AKJ> <skip>
>> На команды, типа:
>> rpm -e samba-2.0.10-alt1  --force
>> отвечает:
>> rpm: принудительными могут быть только установка, обновление,
>> удаление
>> исходников и spec-файла.
AKJ> rpm -e samba-2.0.10-alt1  --notriggers

Это тоже не помогает (( -

rpm -e samba-2.0.10-alt1 --notriggers
ошибка: "samba-2.0.10-alt1" определяет несколько пакетов.


-- 
С уважением,
 Serg                          mailto:forum@vanady.ru




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

* Re: [mdk-re] Re[2]: [mdk-re] 3 штуки samba!!! Kak прибить 2 ??
  2001-09-21 12:23             ` [mdk-re] Re[2]: " Serg
@ 2001-09-21 12:33               ` Vyt
  0 siblings, 0 replies; 12+ messages in thread
From: Vyt @ 2001-09-21 12:33 UTC (permalink / raw)
  To: mandrake-russian

On Fri, 21 Sep 2001 11:31:01 +0400
Serg <forum@vanady.ru> wrote:

<skipped>

> AKJ> rpm -e samba-2.0.10-alt1  --notriggers
> 
> Это тоже не помогает (( -
> 
> rpm -e samba-2.0.10-alt1 --notriggers
> ошибка: "samba-2.0.10-alt1" определяет несколько пакетов.

Попробуйте
rpm -e samba --notriggers --noscripts --allmatches

и проверьте корректность (количество, соответствие) пакетов
samba-client и samba-common

<skipped>

-- 
Regards, Vyt
mailto:  vyt@vzljot.ru
JID:     vyt@jabber.org



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

* Re: [mdk-re] 3 штуки samba!!! Kak прибить 2 ??
  2001-09-21 11:08           ` artem
@ 2001-09-21 22:13             ` Yura Gusev
  0 siblings, 0 replies; 12+ messages in thread
From: Yura Gusev @ 2001-09-21 22:13 UTC (permalink / raw)
  To: mandrake-russian

On Fri, 21 Sep 2001 artem@user42.local.travel-house.ru wrote:

> 2
> > samba-2.0.7-ipl22mdk
> > samba-2.0.10-alt1
> > samba-2.0.10-alt1
> >
> самый простой вариант - убить все три
> для этого надо создать файл /etc/inetd.conf
> и сказать rpm -e samba --allmatches

1 save your .conf
2 rpm -e samba-2.0.7-ipl22mdk
  rpm -e samba-2.0.10-alt1
  rpm -e samba-2.0.10-alt1
  apt-get install samba
3 copy your .conf back

-- 
  2:14pm  up 28 days,  3:18,  3 users,  load average: 0.33, 0.42, 0.31
            __
         | /  \ |        Iouri Goussev            //  \\
        \_\\  //_/       elendal@w4.ca           _\\()//_
         .'/()\'.           Foo-Bar             / //  \\ \
   jgs    \\  //   http://foobar.irc-unix.net    | \__/ |
    I am not 31337. But I can use the Vi editor... ;-0




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

end of thread, other threads:[~2001-09-21 22:13 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-09-21  0:18 ` [mdk-re] ProFTPD Dmitry Yuroff
2001-09-21  6:43   ` Russu V.F.
2001-09-21  7:43   ` Kostya Timoshenko
2001-09-21  9:53   ` Maxim
2001-09-21 10:01     ` [mdk-re] ProFTPD Again Vlad Drakula
2001-09-21 10:24       ` Kostya Timoshenko
2001-09-21 10:43         ` [mdk-re] 3 штуки samba!!! Kak прибить 2 ?? Serg
2001-09-21 11:08           ` artem
2001-09-21 22:13             ` Yura Gusev
2001-09-21 11:51           ` Artem K. Jouravsky
2001-09-21 12:23             ` [mdk-re] Re[2]: " Serg
2001-09-21 12:33               ` Vyt

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