An FTP client is a program that allows you to quickly open a server of the same name. So you can freely use the files on the server with their further viewing, correction, copying, and downloading.
This is a quick deployment and ready-to-run image.
Simple and rapid installation. Easy to maintain.
Connection to FTP Server on Debian 10
After purchasing and starting the VM you should know its IP address. You can find it in the personal account of Azure. (You need to select the virtual machine from the list. By clicking the item “Overview”, your IP is displayed in the line “Public IP Address”).
- To connect to a VM, you need the PuTTy application to connect via ssh. You can download it at the following link – Download
- Run Putty, enter the VM address in the “Host” field and click “Open” to connect.
- In the opened console you should enter a username and password that were specified when creating the virtual machine.
- Next text is displayed
- Install “FileZilla Client” for further connection
You can download it from the link: Download FileZilla Client for Windows (64bit x86)
- Run “FileZilla Client”, and enter the VM address, port, username, and password that were specified when creating the virtual machine
Click “Quickonnect”
- Welcome to the remote site
You have successfully connected to the server and can work with this service.
The examples of the basic FTP user management commands that can be entered after connecting to the PuTTY client:
To create a new user enter: sudo useradd -m username, where username is the name of the new user
The changing of the password for an existing user: sudo passwd username
The deletion of the user: sudo userdel username
The blocking of user account: (works only for password login): sudo usermod -L username
The unblocking of user account:(works only for password login): sudo usermod -U username