Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Managing FTP users in CP #233

Merged
merged 6 commits into from
Jan 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,27 @@ File Transfer Protocol (FTP) and Secure File Transfer Protocol (SFTP) are both w

NB: We strongly recommend using SSH or SFTP for file transfers. FTP is an inherently unsafe protocol, and should only be used for syncing data with suppliers that can’t be done through the Magento API.

## Managing FTP
## Managing FTP Users in Control Panel

**NB: The FTP users created with the instructions below can also be used for SFTP. More information about this can be found**[**here**](#sftp-ssh-file-transfer-protocol)**.**
To manage FTP users in the Control Panel, follow these steps:

1. **Navigate to Hypernode:** Go to the Hypernode you want to manage FTP accounts for. In the side menu, locate and click on the "FTP" menu item.
1. **View Existing Users:** If you already have existing users created via the CLI tool, they will be listed on this page. If no FTP users exist, you will see a form to create a new one.
1. **Fill Out the Form:** In the form, you can specify the FTP username, password, and home directory for a new user.
1. **Delete Existing User:** In the user list, you can click the "trash" icon in the row to delete the user.

```{admonition} Important Points to Note:
---
class: note
---
- If you create a new user with an existing username, the existing user will be overwritten with the new password and home directory.
- Home directories should start with '/' and must exist on your Hypernode.
- The same rules apply to the CLI tool, and these instructions are equivalent.
```

## Managing FTP through CLI

**NB: The FTP users created with the instructions below can also be used for SFTP. More information about this can be found **[**here**](#sftp-ssh-file-transfer-protocol)**.**

### Adding FTP Users

Expand Down
Loading