Question
How to create additional FTP account for a domain in Plesk?
Answer
Adding an additional FTP user via Plesk
-
Go to Domains > example.com > FTP Access > click Add an FTP Account and fill in the fields.
Adding an additional FTP user via a command-line interface
-
Plesk for Linux
-
Connect to a Plesk server via SSH.
-
Use the command below:
# plesk bin ftpsubaccount --create john_doe -domain example.com -passwd "password"
where
- john_doe - FTP username
- example.com - domain name
- password - FTP user password
-
-
Plesk for Windows
-
Connect to a Plesk server via RDP.
-
Use the command below:
# plesk bin ftpsubaccount.exe --create john_doe -domain example.com -passwd "password" -access_read true -access_write true
where
- john_doe - FTP username
- example.com - domain name
- password - FTP user password
-