Example :
How to set up an email or change my account settings.
- Help Center
- Web Hosting
- File Manager/FTP
- How to connect to the FTP server using built-in tools on macOS
How to connect to the FTP server using built-in tools on macOS
With macOS, you can connect to the FTP server using the built-in tools or a third-party FTP client. While macOS provides basic FTP functionality for accessing and sharing files, you will need a dedicated FTP client to manage files fully, including uploading files to a remote server.
You can connect to an FTP server on macOS in two ways: through Finder for a graphical interface or via Terminal for command-line access.
Note: Although the Mac FTP client built into your computer is easy to use, it is read-only. Consider using a third-party FTP client to upload, edit, and manage files on the server.
Table of contents
How to use FTP on Mac via Finder
Finder on Mac is an excellent choice if you are looking for a simple, non-technical way to access files via FTP. It lets you quickly connect to a remote server and even use the sharing settings to set up your Mac as an FTP server.
1. Using the Finder menu bar, click Go > Connect to Server.

2. Type your server’s name or IP address, including ftp://. Once done, click Connect.

3. You will be prompted to enter your username and password for the FTP server. You may also check the box to have it remembered the next time you connect. Once done, click Connect to successfully open FTP via Finder.

How to use FTP on Mac via Terminal
Terminal is a powerful tool that gives you direct access to your computer’s command-line interface. You can also use it to enable FTP on a Mac. However, use it carefully, especially if you are unfamiliar with command-line operations.
1. Launch Terminal on your Mac. Go > Utilities > Terminal.


2. In the Terminal window, type in the server address to connect to the FTP server. Ensure you use the following format: ftp://ftp.domain.com. Once done, press return on your keyboard.

3. You will be prompted to enter your username and password for the FTP server. Once connected, you can navigate and work with the server’s files using the standard commands below:
ls — command will display a list of all files and folders in the current directory on the FTP server.
cd — command allows you to change to a different folder by typing cd followed by the folder name.
get — command lets you download a file from the server to your Mac by typing get followed by the file name.
put — command allows you to upload a file from your Mac to the server by typing put followed by the file name.
quit — command will close your connection to the FTP server.