How to Change FTP Port in Linux? Last Updated : 24 Feb, 2021 Comments Improve Suggest changes Like Article Like Report Files are either uploaded or downloaded to the FTP server. The files are moved from a personal computer to the server when you upload files. The files are moved from the cloud to your personal computer when the files are downloaded. In order to transfer files through FTP, TCP/IP (Transmission Control Protocol/Internet Protocol), or the language used by the internet to execute commands, is used. To adjust the default Linux port of the Proftpd operation, first, open the Proftpd main configuration file for editing with your favorite text editor by issuing the command below. Step 1: First open Proftpd main configuration file for editing. $ nano /etc/proftpd/proftpd.confOpen config file Step 2: Find the following line port number. Port 21Find Port Step 3: And change the FTP default port 21 to a custom port, for example, 210. Change the port Step 4: Save and close the file. To take effect the changes, restart the proftpd service using the below command $ systemctl restart proftpdRestart Proftpd service Step 5: Check the table of local network sockets with the netstat or ss command. $ netstat -tlpn| grep nginx OR $ ss -tlpn| grep nginxCheck port Now your FTP port should be changed. Comment More infoAdvertise with us Next Article How to Change FTP Port in Linux? jayantmehra02 Follow Improve Article Tags : Technical Scripter Linux-Unix How To Technical Scripter 2020 Similar Reads How to change the default SSH port in Linux SSH (Secure Shell) is a network protocol used to securely connect to the remote server where the data between the server and client is transferred in an encrypted format. In the world of Linux system administration and security, one essential practice is changing the default SSH port. This article w 7 min read How to Change Apache HTTP Port in Linux? The Apache HTTP server is one of the internet's most popular web servers today, thanks to its versatility, consistency, and a plethora of features, some of which are actually not available on other web servers, such as Nginx's competitor. Some of Apache's most significant features include the abilit 2 min read How to Change Default MySQL/MariaDB Port in Linux? The default port that the MySQL database server runs under Linux is 3306/TCP. Use the commands below to change the default MySQL/MariaDB Database port in Linux. vi /etc/mysql/mariadb.conf.d/50-server.cnf Search for the line MYSQL, find port under this line, and replace port values accordingly. [mysq 1 min read How to Change the Default Port in Jenkins? Configuring the port in Jenkins is a fundamental aspect of managing the Jenkins server. By default, Jenkins runs on port 8080, but there are scenarios where you may need to change this port to avoid conflicts with other services or security reasons. Understanding how to configure the port in Jenkins 5 min read How to change port in Next.js App Next.js provides the flexibility to change the default port of the development server using command-line options such as -p <port_number> or by updating the "scripts" section in the package.json file, offering developers multiple ways to customize the port configuration based on their requirem 3 min read How to Change Port in Flask app In this article, we will learn to change the port of a Flask application. The default port for the Flask application is 5000. So we can access our application at the below URL. http://127.0.0.1:5000/ We may want to change the port may be because the default port is already occupied. To do that we ju 1 min read How to setup and configure an FTP server in Linux? FTP (file transfer protocol) is an internet protocol that is used for transferring files between client and server over the internet or a computer network. It is similar to other internet protocols like SMTP, which is used for emails, and HTTP, which is used for websites. FTP server enables the func 13 min read How to setup and configure an FTP server in Linux? FTP (file transfer protocol) is an internet protocol that is used for transferring files between client and server over the internet or a computer network. It is similar to other internet protocols like SMTP which is used for emails and HTTP which is used for websites. FTP server enables the functio 9 min read How to Change the Default Port in PostgreSQL PostgreSQL is one of the most powerful and widely used relational database management systems (RDBMS) in the world. By default, PostgreSQL listens for incoming connections on port 5432. In this article, we will describe the process of changing the default port for PostgreSQL in detailed and step-by- 6 min read How to Change Port Number in vue-cli Project ? In this article, we will see the detailed step-by-step process to change the port number in the Vue-Cli project. We will start straight by creating a new Vue project, and move onto the process to change the port number. We will also see the complete verification of changes done in port configuration 2 min read Like