Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
05-02-2003, 03:03 PM
|
#1
|
LQ Newbie
Registered: May 2003
Location: Madison, WI
Distribution: Redhat8(work), Debian(home)
Posts: 4
Rep:
|
proftpd anonymous login issues
Hi. I've found several postings from people with my same problem, but none of the fixes have worked.
When trying to log on as anonymous, I get Unable t set anonymous privileges and Login incorrect.
In my log file on the server, it says session opened, then "ftp: Directory ~ftp/ is not accessible. " then session closed.
Does this mean anything to anyone? how would I make the directory accessible, if it doesn't exist, where do I create it?
Here is my 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
# I dont know why this line is here infoteam.com/pub/proftpd/
# 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 under which the server will run.
User nobody
Group wheel
# Normally, we want files to be overwriteable.
<Directory />
AllowOverwrite on
</Directory>
# A basic anonymous configuration, no upload directories.
<Anonymous ~ftp>
User ftp
Group ftp
RequireValidShell off
# 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>
<Limit Login>
AllowAll
</Limit>
</Anonymous>
Thank you for any help!!
-Jennifer
|
|
|
05-02-2003, 03:16 PM
|
#2
|
LQ Guru
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613
Rep:
|
Does user "ftp" exist? If so, where is their home directory?
If they don't exist, create them (create group ftp first, then user ftp), and put their home directory wherever you want your "anonymous" root to be. So if you want anonymous to default to:
/var/files/shared/ftp
Then set that as your home directory for that user.
HTH
Cool
|
|
|
05-05-2003, 02:36 PM
|
#3
|
LQ Newbie
Registered: May 2003
Location: Madison, WI
Distribution: Redhat8(work), Debian(home)
Posts: 4
Original Poster
Rep:
|
thanks!
MasterC:
Thank you, that was very helpful and worked. I already have a group and user named ftp, but no directory was set for them. So, once figuring out to how to define the directory for a user, everything worked just great. Your advice was right on target.
Jen Stander
|
|
|
05-05-2003, 07:11 PM
|
#4
|
LQ Guru
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613
Rep:
|
You're Welcome, glad it worked for ya.
Cool
|
|
|
All times are GMT -5. The time now is 11:48 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|