Difference between revisions of "Command-line arguments (Server)"

From FileZilla Wiki
Jump to navigationJump to search
(Adding missing slashes in compat options)
 
(56 intermediate revisions by 35 users not shown)
Line 1: Line 1:
== Command Line Options ==
+
These are the command-line arguments for [[FileZilla FTP Server|FileZilla Server]]. The Client command-line arguments can be found under [[Command-line arguments (Client)]].
  
Starting and stopping the service:
+
== FileZilla Server command-line arguments on Windows ==
  
/start
+
To stop/start FileZilla Server open a cmd.exe or PowerShell console with Administrator privileges and type the following command:
/stop
 
  
Installing the service for manual startup:
+
net stop filezilla-server
 +
net start filezilla-server
  
/install
 
  
Installing the service for start at boot:
+
To reload the configuration at runtime:
  
  /install auto
+
  sc control filezilla-server paramchange
  
Uninstalling service:
+
== FileZilla Server command-line arguments on Debian ==
  
/uninstall
+
To start FileZilla Server open a command line console and run the following command:
  
Reloading configuration at runtime:
+
sudo systemctl start filezilla-server
 +
sudo systemctl stop filezilla-server
  
/reload-config
+
To start the Administration interface, open a command line console and type run following command:
  
Start and stop can be used together with /compat:
+
/opt/filezilla-server/bin/filezilla-server-gui
  
/compat /start
+
To reload the configuration at runtime:
/compat /stop
 
  
That will start FileZilla Server as normal application and not as a service. Main purpose is for debugging.
+
systemctl reload filezilla-server

Latest revision as of 12:08, 10 April 2024

These are the command-line arguments for FileZilla Server. The Client command-line arguments can be found under Command-line arguments (Client).

FileZilla Server command-line arguments on Windows[edit]

To stop/start FileZilla Server open a cmd.exe or PowerShell console with Administrator privileges and type the following command:

net stop filezilla-server
net start filezilla-server


To reload the configuration at runtime:

sc control filezilla-server paramchange

FileZilla Server command-line arguments on Debian[edit]

To start FileZilla Server open a command line console and run the following command:

sudo systemctl start filezilla-server
sudo systemctl stop filezilla-server

To start the Administration interface, open a command line console and type run following command:

/opt/filezilla-server/bin/filezilla-server-gui

To reload the configuration at runtime:

systemctl reload filezilla-server