Current time: 05-05-2024, 07:11 PM Hello There, Guest! (LoginRegister)


Thread Closed 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Erledigt] Beim erstellen einer Subdomain kein FTP - Login mehr möglich
Author Message
Akif85 Offline
Newbie
*

Posts: 9
Joined: Jun 2010
Reputation: 0
Post: #1
[Erledigt] Beim erstellen einer Subdomain kein FTP - Login mehr möglich
Sobald ich im Kundenbereich eine Subdomain erstelle, bricht die FTP connection ab und es ist weiterhin kein verbinden per FTP mehr möglich. sobald ich die Subdomain gelöscht wird geht alles wieder.

kann mir einer sagen, woran das liegt?

danke schonmal für die Antworten!

bei meinem Server handelt es sich um einen dedicated suse 11.1 server
mit ispCP Omega 1.0.5 Stable Release
ftp ist ein proftpd 1.0.3 RC

Code:
# ispCP ω (OMEGA) a Virtual Hosting Control Panel
# Copyright (C) 2001-2006 by moleSoftware GmbH - http://www.molesoftware.com
# Copyright (C) 2006-2010 by isp Control Panel - http://ispcp.net
#
# Version: $Id: proftpd.conf 2505 2010-01-06 20:30:53Z nuxwin $
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.1 (the "License"); you may not use this file except in
# compliance with the License. You may obtain a copy of the License at
# http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS"
# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
# License for the specific language governing rights and limitations
# under the License.
#
# The Original Code is "VHCS - Virtual Hosting Control System".
#
# The Initial Developer of the Original Code is moleSoftware GmbH.
# Portions created by Initial Developer are Copyright (C) 2001-2006
# by moleSoftware GmbH. All Rights Reserved.
# Portions created by the ispCP Team are Copyright (C) 2006-2010 by
# isp Control Panel. All Rights Reserved.
#
# The ispCP ω Home Page is:
#
#    http://isp-control.net
#

LoadModule mod_sql.c
LoadModule mod_sql_mysql.c

# Set off to disable IPv6 support which is annoying on IPv4 only boxes.
UseIPv6                    off

ServerName                 "golf320.server4you.de"
ServerType                 standalone
DeferWelcome               off

MultilineRFC2228           on
DefaultServer              on
ShowSymlinks               on

AllowOverwrite             on
UseReverseDNS              off
IdentLookups               off
AllowStoreRestart          on
AllowForeignAddress        on

LogFormat                  traff "%b %u"

TimeoutLogin               120
TimeoutNoTransfer          600
TimeoutStalled             600
TimeoutIdle                1200

DisplayLogin               welcome.msg
DisplayChdir               message

ListOptions                "-l"
#LsDefaultOptions           "-l"

DenyFilter                 \*.*/

DefaultRoot                ~

# Uncomment this if you are using NIS or LDAP to retrieve passwords:
# PersistentPasswd         off

# Port 21 is the standard FTP port.
Port                       21

# In some cases you have to specify passive ports range to by-pass
# firewall limitations. Ephemeral ports can be used for that, but
# feel free to use a more narrow range.
#PassivePorts               49152 65534

# 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 /*>
  # Umask 022 is a good standard umask to prevent new files and dirs
  # (second parm) from being group and world writable.
  Umask                    022  022
  # Normally, we want files to be overwriteable.
  AllowOverwrite           on
  HideNoAccess             on
</Directory>

<Limit ALL>
  IgnoreHidden             on
</Limit>

# Be warned: use of this directive impacts CPU average load!
#
# Uncomment this if you like to see progress and transfer rate with ftpwho
# in downloads. That is not needed for uploads rates.
# UseSendFile               off

<Global>
  RootLogin                off
  TransferLog              /var/log/proftpd/xferlog
  ExtendedLog              /var/log/proftpd/ftp_traff.log read,write traff
  PathDenyFilter           "\.quota$"
</Global>

#
# SSL via TLS
#
#<IfModule mod_tls.c>
#  TLSEngine                off                           # on for use of TLS
#  TLSLog                   /var/log/proftpd/ftp_ssl.log  # where to log to
#  TLSProtocol              SSLv23                        # SSLv23 or TLSv1
#  TLSOptions               NoCertRequest                 # either to request the certificate or not
#  TLSRSACertificateFile    /etc/proftpd/ssl.crt          # SSL certfile
#  TLSRSACertificateKeyFile /etc/proftpd/ssl.key          # SSL keyfile
#  TLSVerifyClient          off                           # client verification
#</IfModule>

#
# ISPCP Quota management;
#
<IfModule mod_quotatab.c>
  QuotaEngine              on
  QuotaShowQuotas          on
  QuotaDisplayUnits        Mb

  SQLNamedQuery            get-quota-limit SELECT "name, quota_type, per_session, limit_type, bytes_in_avail, bytes_out_avail, bytes_xfer_avail, files_in_avail, files_out_avail, files_xfer_avail FROM quotalimits WHERE name = '%{0}' AND quota_type = '%{1}'"
  SQLNamedQuery            get-quota-tally SELECT "name, quota_type, bytes_in_used, bytes_out_used, bytes_xfer_used, files_in_used, files_out_used, files_xfer_used FROM quotatallies WHERE name = '%{0}' AND quota_type = '%{1}'"
  SQLNamedQuery            update-quota-tally UPDATE "bytes_in_used = bytes_in_used + %{0}, bytes_out_used = bytes_out_used + %{1}, bytes_xfer_used = bytes_xfer_used + %{2}, files_in_used = files_in_used + %{3}, files_out_used = files_out_used + %{4}, files_xfer_used = files_xfer_used + %{5} WHERE name = '%{6}' AND quota_type = '%{7}'" quotatallies
  SQLNamedQuery            insert-quota-tally INSERT "%{0}, %{1}, %{2}, %{3}, %{4}, %{5}, %{6}, %{7}" quotatallies

  QuotaLock                /var/run/proftpd/tally.lock
  QuotaLimitTable          sql:/get-quota-limit
  QuotaTallyTable          sql:/get-quota-tally/update-quota-tally/insert-quota-tally
</IfModule>

<IfModule mod_ratio.c>
  Ratios                   on
</IfModule>

# Delay engine reduces impact of the so-called Timing Attack described in
# http://security.lss.hr/index.php?page=details&ID=LSS-2004-10-02
# It is on by default.
<IfModule mod_delay.c>
  DelayEngine              on
</IfModule>

<IfModule mod_ctrls.c>
  ControlsEngine           on
  ControlsMaxClients       2
  ControlsLog              /var/log/proftpd/controls.log
  ControlsInterval         5
  ControlsSocket           /var/run/proftpd/proftpd.sock
</IfModule>

<IfModule mod_ctrls_admin.c>
  AdminControlsEngine      on
</IfModule>

# ispCP SQL Managment
AuthOrder                  mod_sql.c
<IfModule mod_sql_mysql.c>
SQLBackend                 mysql
SQLAuthTypes               Crypt
SQLAuthenticate            on
SQLConnectInfo             ispcp@localhost vftp
SQLUserInfo                ftp_users userid passwd uid gid homedir shell
SQLGroupInfo               ftp_group groupname gid members
SQLMinUserUID              2000
SQLMinUserGID              2000
</IfModule>

# A basic anonymous configuration, no upload directories.

# <Anonymous ~ftp>
#   User                   ftp
#   Group                  nogroup
#   # We want clients to be able to login with "anonymous" as well as "ftp"
#   UserAlias              anonymous ftp
#   # Cosmetic changes, all files belongs to ftp user
#   DirFakeUser            on ftp
#   DirFakeGroup           on ftp
#
#   RequireValidShell      off
#
#   # 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
#   <Directory *>
#     <Limit WRITE>
#       DenyAll
#     </Limit>
#   </Directory>
#
#   # Uncomment this if you're brave.
#   # <Directory incoming>
#   #   # Umask 022 is a good standard umask to prevent new files and dirs
#   #   # (second parm) from being group and world writable.
#   #   Umask              022  022
#   #   <Limit READ WRITE>
#   #     DenyAll
#   #   </Limit>
#   #   <Limit STOR>
#   #     AllowAll
#   #   </Limit>
#   # </Directory>
#
# </Anonymous>
Include /etc/proftpd/ispcp/*
(This post was last modified: 06-15-2010 02:51 AM by Akif85.)
06-10-2010 07:04 AM
Find all posts by this user
rethus Offline
Junior Member
*

Posts: 202
Joined: May 2009
Reputation: 3
Post: #2
RE: Beim erstellen einer Subdomain kein FTP - Login mehr möglich
(06-10-2010 07:04 AM)Akif85 Wrote:  Sobald ich im Kundenbereich eine Subdomain erstelle, bricht die FTP connection ab und es ist weiterhin kein verbinden per FTP mehr möglich. sobald ich die Subdomain gelöscht wird geht alles wieder.

kann mir einer sagen, woran das liegt?

danke schonmal für die Antworten!

bei meinem Server handelt es sich um einen dedicated suse 11.1 server
mit ispCP Omega 1.0.5 Stable Release
ftp ist ein proftpd 1.0.3 RC

Code:
# ispCP ω (OMEGA) a Virtual Hosting Control Panel
# Copyright (C) 2001-2006 by moleSoftware GmbH - http://www.molesoftware.com
# Copyright (C) 2006-2010 by isp Control Panel - http://ispcp.net
#
# Version: $Id: proftpd.conf 2505 2010-01-06 20:30:53Z nuxwin $
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.1 (the "License"); you may not use this file except in
# compliance with the License. You may obtain a copy of the License at
# http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS"
# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
# License for the specific language governing rights and limitations
# under the License.
#
# The Original Code is "VHCS - Virtual Hosting Control System".
#
# The Initial Developer of the Original Code is moleSoftware GmbH.
# Portions created by Initial Developer are Copyright (C) 2001-2006
# by moleSoftware GmbH. All Rights Reserved.
# Portions created by the ispCP Team are Copyright (C) 2006-2010 by
# isp Control Panel. All Rights Reserved.
#
# The ispCP ω Home Page is:
#
#    http://isp-control.net
#

LoadModule mod_sql.c
LoadModule mod_sql_mysql.c

# Set off to disable IPv6 support which is annoying on IPv4 only boxes.
UseIPv6                    off

ServerName                 "golf320.server4you.de"
ServerType                 standalone
DeferWelcome               off

MultilineRFC2228           on
DefaultServer              on
ShowSymlinks               on

AllowOverwrite             on
UseReverseDNS              off
IdentLookups               off
AllowStoreRestart          on
AllowForeignAddress        on

LogFormat                  traff "%b %u"

TimeoutLogin               120
TimeoutNoTransfer          600
TimeoutStalled             600
TimeoutIdle                1200

DisplayLogin               welcome.msg
DisplayChdir               message

ListOptions                "-l"
#LsDefaultOptions           "-l"

DenyFilter                 \*.*/

DefaultRoot                ~

# Uncomment this if you are using NIS or LDAP to retrieve passwords:
# PersistentPasswd         off

# Port 21 is the standard FTP port.
Port                       21

# In some cases you have to specify passive ports range to by-pass
# firewall limitations. Ephemeral ports can be used for that, but
# feel free to use a more narrow range.
#PassivePorts               49152 65534

# 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 /*>
  # Umask 022 is a good standard umask to prevent new files and dirs
  # (second parm) from being group and world writable.
  Umask                    022  022
  # Normally, we want files to be overwriteable.
  AllowOverwrite           on
  HideNoAccess             on
</Directory>

<Limit ALL>
  IgnoreHidden             on
</Limit>

# Be warned: use of this directive impacts CPU average load!
#
# Uncomment this if you like to see progress and transfer rate with ftpwho
# in downloads. That is not needed for uploads rates.
# UseSendFile               off

<Global>
  RootLogin                off
  TransferLog              /var/log/proftpd/xferlog
  ExtendedLog              /var/log/proftpd/ftp_traff.log read,write traff
  PathDenyFilter           "\.quota$"
</Global>

#
# SSL via TLS
#
#<IfModule mod_tls.c>
#  TLSEngine                off                           # on for use of TLS
#  TLSLog                   /var/log/proftpd/ftp_ssl.log  # where to log to
#  TLSProtocol              SSLv23                        # SSLv23 or TLSv1
#  TLSOptions               NoCertRequest                 # either to request the certificate or not
#  TLSRSACertificateFile    /etc/proftpd/ssl.crt          # SSL certfile
#  TLSRSACertificateKeyFile /etc/proftpd/ssl.key          # SSL keyfile
#  TLSVerifyClient          off                           # client verification
#</IfModule>

#
# ISPCP Quota management;
#
<IfModule mod_quotatab.c>
  QuotaEngine              on
  QuotaShowQuotas          on
  QuotaDisplayUnits        Mb

  SQLNamedQuery            get-quota-limit SELECT "name, quota_type, per_session, limit_type, bytes_in_avail, bytes_out_avail, bytes_xfer_avail, files_in_avail, files_out_avail, files_xfer_avail FROM quotalimits WHERE name = '%{0}' AND quota_type = '%{1}'"
  SQLNamedQuery            get-quota-tally SELECT "name, quota_type, bytes_in_used, bytes_out_used, bytes_xfer_used, files_in_used, files_out_used, files_xfer_used FROM quotatallies WHERE name = '%{0}' AND quota_type = '%{1}'"
  SQLNamedQuery            update-quota-tally UPDATE "bytes_in_used = bytes_in_used + %{0}, bytes_out_used = bytes_out_used + %{1}, bytes_xfer_used = bytes_xfer_used + %{2}, files_in_used = files_in_used + %{3}, files_out_used = files_out_used + %{4}, files_xfer_used = files_xfer_used + %{5} WHERE name = '%{6}' AND quota_type = '%{7}'" quotatallies
  SQLNamedQuery            insert-quota-tally INSERT "%{0}, %{1}, %{2}, %{3}, %{4}, %{5}, %{6}, %{7}" quotatallies

  QuotaLock                /var/run/proftpd/tally.lock
  QuotaLimitTable          sql:/get-quota-limit
  QuotaTallyTable          sql:/get-quota-tally/update-quota-tally/insert-quota-tally
</IfModule>

<IfModule mod_ratio.c>
  Ratios                   on
</IfModule>

# Delay engine reduces impact of the so-called Timing Attack described in
# http://security.lss.hr/index.php?page=details&ID=LSS-2004-10-02
# It is on by default.
<IfModule mod_delay.c>
  DelayEngine              on
</IfModule>

<IfModule mod_ctrls.c>
  ControlsEngine           on
  ControlsMaxClients       2
  ControlsLog              /var/log/proftpd/controls.log
  ControlsInterval         5
  ControlsSocket           /var/run/proftpd/proftpd.sock
</IfModule>

<IfModule mod_ctrls_admin.c>
  AdminControlsEngine      on
</IfModule>

# ispCP SQL Managment
AuthOrder                  mod_sql.c
<IfModule mod_sql_mysql.c>
SQLBackend                 mysql
SQLAuthTypes               Crypt
SQLAuthenticate            on
SQLConnectInfo             ispcp@localhost vftp
SQLUserInfo                ftp_users userid passwd uid gid homedir shell
SQLGroupInfo               ftp_group groupname gid members
SQLMinUserUID              2000
SQLMinUserGID              2000
</IfModule>

# A basic anonymous configuration, no upload directories.

# <Anonymous ~ftp>
#   User                   ftp
#   Group                  nogroup
#   # We want clients to be able to login with "anonymous" as well as "ftp"
#   UserAlias              anonymous ftp
#   # Cosmetic changes, all files belongs to ftp user
#   DirFakeUser            on ftp
#   DirFakeGroup           on ftp
#
#   RequireValidShell      off
#
#   # 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
#   <Directory *>
#     <Limit WRITE>
#       DenyAll
#     </Limit>
#   </Directory>
#
#   # Uncomment this if you're brave.
#   # <Directory incoming>
#   #   # Umask 022 is a good standard umask to prevent new files and dirs
#   #   # (second parm) from being group and world writable.
#   #   Umask              022  022
#   #   <Limit READ WRITE>
#   #     DenyAll
#   #   </Limit>
#   #   <Limit STOR>
#   #     AllowAll
#   #   </Limit>
#   # </Directory>
#
# </Anonymous>
Include /etc/proftpd/ispcp/*

Hast du die Logfiles schon mal gecheckt.. /var/log/messages oder die von proftpd ? Bitte mal checken und hier ggf. Posten
06-11-2010 02:26 AM
Find all posts by this user
Akif85 Offline
Newbie
*

Posts: 9
Joined: Jun 2010
Reputation: 0
Post: #3
RE: Beim erstellen einer Subdomain kein FTP - Login mehr möglich
also hier mal die /var/log/proftpd/controls.log

Code:
Jun 09 03:14:02 mod_ctrls/0.9.4[22704]: error: unable to bind to local socket: No such file or directory
Jun 09 17:33:51 mod_ctrls/0.9.4[30260]: error: unable to bind to local socket: No such file or directory
Jun 09 17:44:57 mod_ctrls/0.9.4[2372]: error: unable to bind to local socket: No such file or directory
Jun 09 18:17:07 mod_ctrls/0.9.4[4220]: error: unable to bind to local socket: No such file or directory
Jun 09 18:19:50 mod_ctrls/0.9.4[4846]: error: unable to bind to local socket: No such file or directory
Jun 09 18:27:08 mod_ctrls/0.9.4[5487]: error: unable to bind to local socket: No such file or directory
Jun 09 18:33:57 mod_ctrls/0.9.4[6203]: error: unable to bind to local socket: No such file or directory
Jun 09 19:10:38 mod_ctrls/0.9.4[7696]: error: unable to bind to local socket: No such file or directory
06-11-2010 02:56 AM
Find all posts by this user
ZooL Offline
Moderator
*****
Moderators

Posts: 3,429
Joined: Jan 2007
Reputation: 79
Post: #4
RE: Beim erstellen einer Subdomain kein FTP - Login mehr möglich
debug modus von proftpd starten
06-11-2010 03:19 AM
Visit this user's website Find all posts by this user
Akif85 Offline
Newbie
*

Posts: 9
Joined: Jun 2010
Reputation: 0
Post: #5
RE: Beim erstellen einer Subdomain kein FTP - Login mehr möglich
Also bis zum anlegen einer subdomain sieht die Ausgabe in debuggmode so aus

Code:
- using TCP receive buffer size of 87380 bytes
- using TCP send buffer size of 16384 bytes
- disabling runtime support for IPv6 connections
- DenyFilter: compiling regex '\*.*/'
- <Directory /*>: adding section for resolved path '/*'
- PathDenyFilter: compiling deny regex '.quota$'
- <IfModule>: skipping 'mod_quotatab.c' section at line 134
- <IfModule>: skipping 'mod_ratio.c' section at line 149
- <IfModule>: using 'mod_delay.c' section at line 156
- <IfModule>: using 'mod_ctrls.c' section at line 160
- <IfModule>: skipping 'mod_ctrls_admin.c' section at line 168
- <IfModule>: using 'mod_sql_mysql.c' section at line 174
- processing configuration directory '/etc/proftpd/ispcp'
- <Directory ~/backups>: deferring resolution of path
- <Directory ~/backups/*>: deferring resolution of path
- <Directory ~/cgi-bin>: deferring resolution of path
- <Directory ~/cgi-bin/*>: deferring resolution of path
- <Directory ~/htdocs>: deferring resolution of path
- <Directory ~/htdocs/*>: deferring resolution of path
- <Directory ~/disabled>: deferring resolution of path
- <Directory ~/errors>: deferring resolution of path
- <Directory ~/errors/*>: deferring resolution of path
- <Directory ~/logs>: deferring resolution of path
- <Directory ~/logs/*>: deferring resolution of path
- <Directory ~/phptmp>: deferring resolution of path
- <Directory ~/phptmp/*>: deferring resolution of path
- <Directory ~/statistics>: deferring resolution of path
- <Directory ~/statistics/*>: deferring resolution of path
85.25.143.248 -
85.25.143.248 - Config for golf320.server4you.de:
85.25.143.248 - ~/statistics/*
85.25.143.248 -  Limit
85.25.143.248 -   AllowAll
85.25.143.248 -  ShowSymlinks
85.25.143.248 -  AllowOverwrite
85.25.143.248 -  AllowStoreRestart
85.25.143.248 -  AllowForeignAddress
85.25.143.248 -  TimeoutNoTransfer
85.25.143.248 -  TimeoutStalled
85.25.143.248 -  TimeoutIdle
85.25.143.248 -  DisplayLogin
85.25.143.248 -  DisplayChdir
85.25.143.248 -  ListOptions
85.25.143.248 -  DenyFilter
85.25.143.248 -  SQLAuthenticate
85.25.143.248 -  SQLConnectInfo
85.25.143.248 -  SQLMinUserUID
85.25.143.248 -  SQLMinUserGID
85.25.143.248 -  RootLogin
85.25.143.248 -  TransferLog
85.25.143.248 -  PathDenyFilter
85.25.143.248 - ~/statistics
85.25.143.248 -  Limit
85.25.143.248 -   DenyAll
85.25.143.248 -  ShowSymlinks
85.25.143.248 -  AllowOverwrite
85.25.143.248 -  AllowStoreRestart
85.25.143.248 -  AllowForeignAddress
85.25.143.248 -  TimeoutNoTransfer
85.25.143.248 -  TimeoutStalled
85.25.143.248 -  TimeoutIdle
85.25.143.248 -  DisplayLogin
85.25.143.248 -  DisplayChdir
85.25.143.248 -  ListOptions
85.25.143.248 -  DenyFilter
85.25.143.248 -  SQLAuthenticate
85.25.143.248 -  SQLConnectInfo
85.25.143.248 -  SQLMinUserUID
85.25.143.248 -  SQLMinUserGID
85.25.143.248 -  RootLogin
85.25.143.248 -  TransferLog
85.25.143.248 -  PathDenyFilter
85.25.143.248 - ~/phptmp/*
85.25.143.248 -  Limit
85.25.143.248 -   AllowAll
85.25.143.248 -  ShowSymlinks
85.25.143.248 -  AllowOverwrite
85.25.143.248 -  AllowStoreRestart
85.25.143.248 -  AllowForeignAddress
85.25.143.248 -  TimeoutNoTransfer
85.25.143.248 -  TimeoutStalled
85.25.143.248 -  TimeoutIdle
85.25.143.248 -  DisplayLogin
85.25.143.248 -  DisplayChdir
85.25.143.248 -  ListOptions
85.25.143.248 -  DenyFilter
85.25.143.248 -  SQLAuthenticate
85.25.143.248 -  SQLConnectInfo
85.25.143.248 -  SQLMinUserUID
85.25.143.248 -  SQLMinUserGID
85.25.143.248 -  RootLogin
85.25.143.248 -  TransferLog
85.25.143.248 -  PathDenyFilter
85.25.143.248 - ~/phptmp
85.25.143.248 -  Limit
85.25.143.248 -   DenyAll
85.25.143.248 -  ShowSymlinks
85.25.143.248 -  AllowOverwrite
85.25.143.248 -  AllowStoreRestart
85.25.143.248 -  AllowForeignAddress
85.25.143.248 -  TimeoutNoTransfer
85.25.143.248 -  TimeoutStalled
85.25.143.248 -  TimeoutIdle
85.25.143.248 -  DisplayLogin
85.25.143.248 -  DisplayChdir
85.25.143.248 -  ListOptions
85.25.143.248 -  DenyFilter
85.25.143.248 -  SQLAuthenticate
85.25.143.248 -  SQLConnectInfo
85.25.143.248 -  SQLMinUserUID
85.25.143.248 -  SQLMinUserGID
85.25.143.248 -  RootLogin
85.25.143.248 -  TransferLog
85.25.143.248 -  PathDenyFilter
85.25.143.248 - ~/logs/*
85.25.143.248 -  Limit
85.25.143.248 -   AllowAll
85.25.143.248 -  ShowSymlinks
85.25.143.248 -  AllowOverwrite
85.25.143.248 -  AllowStoreRestart
85.25.143.248 -  AllowForeignAddress
85.25.143.248 -  TimeoutNoTransfer
85.25.143.248 -  TimeoutStalled
85.25.143.248 -  TimeoutIdle
85.25.143.248 -  DisplayLogin
85.25.143.248 -  DisplayChdir
85.25.143.248 -  ListOptions
85.25.143.248 -  DenyFilter
85.25.143.248 -  SQLAuthenticate
85.25.143.248 -  SQLConnectInfo
85.25.143.248 -  SQLMinUserUID
85.25.143.248 -  SQLMinUserGID
85.25.143.248 -  RootLogin
85.25.143.248 -  TransferLog
85.25.143.248 -  PathDenyFilter
85.25.143.248 - ~/logs
85.25.143.248 -  Limit
85.25.143.248 -   DenyAll
85.25.143.248 -  ShowSymlinks
85.25.143.248 -  AllowOverwrite
85.25.143.248 -  AllowStoreRestart
85.25.143.248 -  AllowForeignAddress
85.25.143.248 -  TimeoutNoTransfer
85.25.143.248 -  TimeoutStalled
85.25.143.248 -  TimeoutIdle
85.25.143.248 -  DisplayLogin
85.25.143.248 -  DisplayChdir
85.25.143.248 -  ListOptions
85.25.143.248 -  DenyFilter
85.25.143.248 -  SQLAuthenticate
85.25.143.248 -  SQLConnectInfo
85.25.143.248 -  SQLMinUserUID
85.25.143.248 -  SQLMinUserGID
85.25.143.248 -  RootLogin
85.25.143.248 -  TransferLog
85.25.143.248 -  PathDenyFilter
85.25.143.248 - ~/errors/*
85.25.143.248 -  Limit
85.25.143.248 -   AllowAll
85.25.143.248 -  ShowSymlinks
85.25.143.248 -  AllowOverwrite
85.25.143.248 -  AllowStoreRestart
85.25.143.248 -  AllowForeignAddress
85.25.143.248 -  TimeoutNoTransfer
85.25.143.248 -  TimeoutStalled
85.25.143.248 -  TimeoutIdle
85.25.143.248 -  DisplayLogin
85.25.143.248 -  DisplayChdir
85.25.143.248 -  ListOptions
85.25.143.248 -  DenyFilter
85.25.143.248 -  SQLAuthenticate
85.25.143.248 -  SQLConnectInfo
85.25.143.248 -  SQLMinUserUID
85.25.143.248 -  SQLMinUserGID
85.25.143.248 -  RootLogin
85.25.143.248 -  TransferLog
85.25.143.248 -  PathDenyFilter
85.25.143.248 - ~/errors
85.25.143.248 -  Limit
85.25.143.248 -   DenyAll
85.25.143.248 -  ShowSymlinks
85.25.143.248 -  AllowOverwrite
85.25.143.248 -  AllowStoreRestart
85.25.143.248 -  AllowForeignAddress
85.25.143.248 -  TimeoutNoTransfer
85.25.143.248 -  TimeoutStalled
85.25.143.248 -  TimeoutIdle
85.25.143.248 -  DisplayLogin
85.25.143.248 -  DisplayChdir
85.25.143.248 -  ListOptions
85.25.143.248 -  DenyFilter
85.25.143.248 -  SQLAuthenticate
85.25.143.248 -  SQLConnectInfo
85.25.143.248 -  SQLMinUserUID
85.25.143.248 -  SQLMinUserGID
85.25.143.248 -  RootLogin
85.25.143.248 -  TransferLog
85.25.143.248 -  PathDenyFilter
85.25.143.248 - ~/disabled
85.25.143.248 -  Limit
85.25.143.248 -   DenyAll
85.25.143.248 -  ShowSymlinks
85.25.143.248 -  AllowOverwrite
85.25.143.248 -  AllowStoreRestart
85.25.143.248 -  AllowForeignAddress
85.25.143.248 -  TimeoutNoTransfer
85.25.143.248 -  TimeoutStalled
85.25.143.248 -  TimeoutIdle
85.25.143.248 -  DisplayLogin
85.25.143.248 -  DisplayChdir
85.25.143.248 -  ListOptions
85.25.143.248 -  DenyFilter
85.25.143.248 -  SQLAuthenticate
85.25.143.248 -  SQLConnectInfo
85.25.143.248 -  SQLMinUserUID
85.25.143.248 -  SQLMinUserGID
85.25.143.248 -  RootLogin
85.25.143.248 -  TransferLog
85.25.143.248 -  PathDenyFilter
85.25.143.248 - ~/htdocs/*
85.25.143.248 -  Limit
85.25.143.248 -   AllowAll
85.25.143.248 -  ShowSymlinks
85.25.143.248 -  AllowOverwrite
85.25.143.248 -  AllowStoreRestart
85.25.143.248 -  AllowForeignAddress
85.25.143.248 -  TimeoutNoTransfer
85.25.143.248 -  TimeoutStalled
85.25.143.248 -  TimeoutIdle
85.25.143.248 -  DisplayLogin
85.25.143.248 -  DisplayChdir
85.25.143.248 -  ListOptions
85.25.143.248 -  DenyFilter
85.25.143.248 -  SQLAuthenticate
85.25.143.248 -  SQLConnectInfo
85.25.143.248 -  SQLMinUserUID
85.25.143.248 -  SQLMinUserGID
85.25.143.248 -  RootLogin
85.25.143.248 -  TransferLog
85.25.143.248 -  PathDenyFilter
85.25.143.248 - ~/htdocs
85.25.143.248 -  Limit
85.25.143.248 -   DenyAll
85.25.143.248 -  ShowSymlinks
85.25.143.248 -  AllowOverwrite
85.25.143.248 -  AllowStoreRestart
85.25.143.248 -  AllowForeignAddress
85.25.143.248 -  TimeoutNoTransfer
85.25.143.248 -  TimeoutStalled
85.25.143.248 -  TimeoutIdle
85.25.143.248 -  DisplayLogin
85.25.143.248 -  DisplayChdir
85.25.143.248 -  ListOptions
85.25.143.248 -  DenyFilter
85.25.143.248 -  SQLAuthenticate
85.25.143.248 -  SQLConnectInfo
85.25.143.248 -  SQLMinUserUID
85.25.143.248 -  SQLMinUserGID
85.25.143.248 -  RootLogin
85.25.143.248 -  TransferLog
85.25.143.248 -  PathDenyFilter
85.25.143.248 - ~/cgi-bin/*
85.25.143.248 -  Limit
85.25.143.248 -   AllowAll
85.25.143.248 -  ShowSymlinks
85.25.143.248 -  AllowOverwrite
85.25.143.248 -  AllowStoreRestart
85.25.143.248 -  AllowForeignAddress
85.25.143.248 -  TimeoutNoTransfer
85.25.143.248 -  TimeoutStalled
85.25.143.248 -  TimeoutIdle
85.25.143.248 -  DisplayLogin
85.25.143.248 -  DisplayChdir
85.25.143.248 -  ListOptions
85.25.143.248 -  DenyFilter
85.25.143.248 -  SQLAuthenticate
85.25.143.248 -  SQLConnectInfo
85.25.143.248 -  SQLMinUserUID
85.25.143.248 -  SQLMinUserGID
85.25.143.248 -  RootLogin
85.25.143.248 -  TransferLog
85.25.143.248 -  PathDenyFilter
85.25.143.248 - ~/cgi-bin
85.25.143.248 -  Limit
85.25.143.248 -   DenyAll
85.25.143.248 -  ShowSymlinks
85.25.143.248 -  AllowOverwrite
85.25.143.248 -  AllowStoreRestart
85.25.143.248 -  AllowForeignAddress
85.25.143.248 -  TimeoutNoTransfer
85.25.143.248 -  TimeoutStalled
85.25.143.248 -  TimeoutIdle
85.25.143.248 -  DisplayLogin
85.25.143.248 -  DisplayChdir
85.25.143.248 -  ListOptions
85.25.143.248 -  DenyFilter
85.25.143.248 -  SQLAuthenticate
85.25.143.248 -  SQLConnectInfo
85.25.143.248 -  SQLMinUserUID
85.25.143.248 -  SQLMinUserGID
85.25.143.248 -  RootLogin
85.25.143.248 -  TransferLog
85.25.143.248 -  PathDenyFilter
85.25.143.248 - ~/backups/*
85.25.143.248 -  Limit
85.25.143.248 -   AllowAll
85.25.143.248 -  ShowSymlinks
85.25.143.248 -  AllowOverwrite
85.25.143.248 -  AllowStoreRestart
85.25.143.248 -  AllowForeignAddress
85.25.143.248 -  TimeoutNoTransfer
85.25.143.248 -  TimeoutStalled
85.25.143.248 -  TimeoutIdle
85.25.143.248 -  DisplayLogin
85.25.143.248 -  DisplayChdir
85.25.143.248 -  ListOptions
85.25.143.248 -  DenyFilter
85.25.143.248 -  SQLAuthenticate
85.25.143.248 -  SQLConnectInfo
85.25.143.248 -  SQLMinUserUID
85.25.143.248 -  SQLMinUserGID
85.25.143.248 -  RootLogin
85.25.143.248 -  TransferLog
85.25.143.248 -  PathDenyFilter
85.25.143.248 - ~/backups
85.25.143.248 -  Limit
85.25.143.248 -   DenyAll
85.25.143.248 -  ShowSymlinks
85.25.143.248 -  AllowOverwrite
85.25.143.248 -  AllowStoreRestart
85.25.143.248 -  AllowForeignAddress
85.25.143.248 -  TimeoutNoTransfer
85.25.143.248 -  TimeoutStalled
85.25.143.248 -  TimeoutIdle
85.25.143.248 -  DisplayLogin
85.25.143.248 -  DisplayChdir
85.25.143.248 -  ListOptions
85.25.143.248 -  DenyFilter
85.25.143.248 -  SQLAuthenticate
85.25.143.248 -  SQLConnectInfo
85.25.143.248 -  SQLMinUserUID
85.25.143.248 -  SQLMinUserGID
85.25.143.248 -  RootLogin
85.25.143.248 -  TransferLog
85.25.143.248 -  PathDenyFilter
85.25.143.248 - Limit
85.25.143.248 -  IgnoreHidden
85.25.143.248 - /*
85.25.143.248 -  Umask
85.25.143.248 -  DirUmask
85.25.143.248 -  AllowOverwrite
85.25.143.248 -  HideNoAccess
85.25.143.248 -  ShowSymlinks
85.25.143.248 -  AllowStoreRestart
85.25.143.248 -  AllowForeignAddress
85.25.143.248 -  TimeoutNoTransfer
85.25.143.248 -  TimeoutStalled
85.25.143.248 -  TimeoutIdle
85.25.143.248 -  DisplayLogin
85.25.143.248 -  DisplayChdir
85.25.143.248 -  ListOptions
85.25.143.248 -  DenyFilter
85.25.143.248 -  SQLAuthenticate
85.25.143.248 -  SQLConnectInfo
85.25.143.248 -  SQLMinUserUID
85.25.143.248 -  SQLMinUserGID
85.25.143.248 -  RootLogin
85.25.143.248 -  TransferLog
85.25.143.248 -  PathDenyFilter
85.25.143.248 - DeferWelcome
85.25.143.248 - DefaultServer
85.25.143.248 - ShowSymlinks
85.25.143.248 - AllowOverwrite
85.25.143.248 - IdentLookups
85.25.143.248 - AllowStoreRestart
85.25.143.248 - AllowForeignAddress
85.25.143.248 - TimeoutLogin
85.25.143.248 - TimeoutNoTransfer
85.25.143.248 - TimeoutStalled
85.25.143.248 - TimeoutIdle
85.25.143.248 - DisplayLogin
85.25.143.248 - DisplayChdir
85.25.143.248 - ListOptions
85.25.143.248 - DenyFilter
85.25.143.248 - DefaultRoot
85.25.143.248 - UserID
85.25.143.248 - UserName
85.25.143.248 - GroupID
85.25.143.248 - GroupName
85.25.143.248 - DelayEngine
85.25.143.248 - AuthOrder
85.25.143.248 - SQLBackend
85.25.143.248 - SQLAuthTypes
85.25.143.248 - SQLAuthenticate
85.25.143.248 - SQLConnectInfo
85.25.143.248 - SQLUserTable
85.25.143.248 - SQLUsernameField
85.25.143.248 - SQLPasswordField
85.25.143.248 - SQLUidField
85.25.143.248 - SQLGidField
85.25.143.248 - SQLHomedirField
85.25.143.248 - SQLShellField
85.25.143.248 - SQLGroupTable
85.25.143.248 - SQLGroupnameField
85.25.143.248 - SQLGroupGIDField
85.25.143.248 - SQLGroupMembersField
85.25.143.248 - SQLMinUserUID
85.25.143.248 - SQLMinUserGID
85.25.143.248 - RootLogin
85.25.143.248 - TransferLog
85.25.143.248 - ExtendedLog
85.25.143.248 - PathDenyFilter
85.25.143.248 - notice: unable to listen to local socket: Operation not permitted
85.25.143.248 - ProFTPD 1.3.3rc2 (devel) (built Fri Nov 20 15:28:18 UTC 2009) standalone mode STARTUP
85.25.143.248 - mod_ctrls: unable to chown local socket: No such file or directory

lege ich eine Subdomain an:

Code:
85.25.143.248 - ProFTPD killed (signal 15)
85.25.143.248 - ProFTPD 1.3.3rc2 standalone mode SHUTDOWN
85.25.143.248 - deleting existing scoreboard '/var/run//proftpd.scoreboard'
06-11-2010 03:35 AM
Find all posts by this user
fulltilt Offline
Member
***

Posts: 1,225
Joined: Apr 2007
Reputation: 5
Post: #6
RE: Beim erstellen einer Subdomain kein FTP - Login mehr möglich
wenn die Subdomain angelegt wurde:
- ist der Subdomain Ordner im Userweb angelegt worden?
- und wurde in der ispcp Datenbank der FTP User angelegt (richtige UID)?
- unter ispcp debugger im CP steht da alles auf status OK?

wenn es eine Neuinstallation ist und noch keine Webs drauf liegen, würde ich empfehlen den Server neu aufzusetzen mit einem Debian OS ...
06-12-2010 08:37 PM
Find all posts by this user
Akif85 Offline
Newbie
*

Posts: 9
Joined: Jun 2010
Reputation: 0
Post: #7
RE: Beim erstellen einer Subdomain kein FTP - Login mehr möglich
(06-12-2010 08:37 PM)fulltilt Wrote:  wenn die Subdomain angelegt wurde:
- ist der Subdomain Ordner im Userweb angelegt worden?
- und wurde in der ispcp Datenbank der FTP User angelegt (richtige UID)?
- unter ispcp debugger im CP steht da alles auf status OK?

wenn es eine Neuinstallation ist und noch keine Webs drauf liegen, würde ich empfehlen den Server neu aufzusetzen mit einem Debian OS ...

Ein Debian OS aufzusetzen würde mich 40 € kosten, dann hätte ich auch plesk mit dabei... Genau das wollte ich meiden.

Die Einhängepunte werden unter /srv/www/virtual/Domain.TLD/Subdomainname angelegt weiß nicht ob sich das so gehört.

im ISPCP - Debugger habe ich keine Fehler, allerdings zeigt der Anti-Rootkits-Tools-Logchecker:
Checking `bindshell'... INFECTED (PORTS: 465)

In der Datenbank stimmt alles.

Als ich gerade eben eine Subdomain anlegte da gings nun gehts wieder nicht, ich dreh am Rad!

edit: Mir fällt gerade auf, wenn ich eine Subdomain anlege wärend ich mit dem FTP-Clienten eingeloggt bin fliege ich raus und kann nicht mehr verbinden. Bin ich aber wärend des anlegens ausgeloggt geht alles.
(This post was last modified: 06-13-2010 04:59 AM by Akif85.)
06-13-2010 04:54 AM
Find all posts by this user
gOOvER Offline
Banned

Posts: 3,561
Joined: Jul 2007
Post: #8
RE: Beim erstellen einer Subdomain kein FTP - Login mehr möglich
40 Euro für Debian? Den Provider würde ich schnell wechseln. Wink Das im Rootkit.log ist unwichtig. Gibt einige Threads dazu.
(This post was last modified: 06-13-2010 06:49 AM by gOOvER.)
06-13-2010 06:48 AM
Visit this user's website Find all posts by this user
ZooL Offline
Moderator
*****
Moderators

Posts: 3,429
Joined: Jan 2007
Reputation: 79
Post: #9
RE: Beim erstellen einer Subdomain kein FTP - Login mehr möglich
also bei S4you kannst du doch kostenlos im admin menue debian minimal installieren...
und ispcp ist dann kein problem mehr...

mfg
06-13-2010 11:05 AM
Visit this user's website Find all posts by this user
fulltilt Offline
Member
***

Posts: 1,225
Joined: Apr 2007
Reputation: 5
Post: #10
RE: Beim erstellen einer Subdomain kein FTP - Login mehr möglich
wenn eine Domain angelegt wird werden einige Server Dienste neu gestartet, kann schon sein das dabei für einen kurzen Moment die FTP Verbindung aussetzt ...
SUSE kenne ich in Verbindung mit ispcp nicht, würde ich auch nicht unbedingt für einen Webserver verwenden.
06-13-2010 07:35 PM
Find all posts by this user
Thread Closed 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)