Hello,
Are you able to create FTP users using the above steps?
Main Topics
Browse All TopicsIt has been said that Plesk V9 will have Multiple ftp user accounts.
is it possible to do it now? Cas i cant seem to find it.
Or do i still need to add manually.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: testezPosted on 2009-10-16 at 07:22:36ID: 25589823
Hello,
om) and you wish to create additional ftp users (test2) with the same access privileges as test1 to subfolder like this /var/www/vhosts/example.co m/custom_f older (make sure the folder already exists) or to main folder (/var/www/vhosts/example.c om). To do this follow the instructions below:
m/custom_f older -g psacln -s /bin/false test2
Am not sure, but according to me you cannot create additional FTP user in Plesk Control panel for Linux (this support is enabled in Plesk for windows). Not sure in the case of plesk new version 9.2.2.
I was able to add the FTP users thru backend by following the steps listed below.
You need to have shell access since the Plesk control panel wont allow it in the GUI.
Assuming you already have an existing domain (example.com) with the primary FTP user (test1) with password (test1) with home directory (/var/www/vhosts/example.c
1. Login to shell with root access and then issue the following command.
# id test1
This will show something like this:
# uid=10001(test1) gid=2524(psacln) groups=2524(psacln)
2. Remember the uid of test1 which is 10001, we will need it later.
3. Create user via the command below and use test1's uid like this (this will let test2 access subfolder):
# /usr/sbin/useradd -u 10001 -o -d /var/www/vhosts/example.co
4. create password for test2:
# /etc/passwd test2 (enter the new password and confirm it.)
You should now be able to use an FTP client to login with that users name and password.
Hope this helps.
Let me know if you face any difficulty.