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 2 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,7 +25,22 @@ 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

To manage FTP users in the Control Panel, follow these steps:

- **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.
- **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.
- **Fill Out the Form:** In the form, you can specify the FTP username, password, and home directory for a new user.
- **Delete Existing User:** n the user list, you can click the "trash" icon in the row to delete the user.
ikidnapmyself marked this conversation as resolved.
Show resolved Hide resolved
ikidnapmyself marked this conversation as resolved.
Show resolved Hide resolved

**Important Points to Note:**
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

More semantic to wrap this block in

```{admonition} Important points to note
:class: tip

- 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.
```

Read more about admonitions here

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So you can do things like
image

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tdgroot great, it looks better. can you merge it we are not allowed to merge to the base branch.

https://docs-ephj21c3q.hypernode.io/hypernode-platform/ftp/how-to-configure-ftp-sftp-on-hypernode.html
afbeelding


- 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)**.**

Expand Down
Loading