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

From FileZilla Wiki
Jump to navigationJump to search
 
(11 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Warning|The content of this page is '''outdated''' and '''does not apply''' to FileZilla Server version '''''1.x'''''}}
 
 
 
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)]].
 
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)]].
  
== FileZilla Server command-line arguments ==
+
== FileZilla Server command-line arguments on Windows ==
 
 
Starting and stopping the service:
 
 
 
/start
 
/stop
 
 
 
Installing the service for manual startup:
 
 
 
/install
 
  
Installing the service for start at boot:
+
To stop/start FileZilla Server open a cmd.exe or PowerShell console with Administrator privileges and type the following command:
  
  /install auto
+
  net stop filezilla-server
 +
net start filezilla-server
  
Uninstalling service:
 
  
/uninstall
+
To reload the configuration at runtime:
  
Reloading configuration at runtime:
+
sc control filezilla-server paramchange
  
/reload-config
+
== FileZilla Server command-line arguments on Debian ==
  
According to [http://forum.filezilla-project.org/viewtopic.php?f=6&t=19267 botg's link]
+
To start FileZilla Server open a command line console and run the following command:
  
/reload-config works by sending a window-message to the first instance of FileZilla Server it finds. In other words, not possible to specify instance. Not even the order in which it finds instances is defined.
+
sudo systemctl start filezilla-server
 +
sudo systemctl stop filezilla-server
  
Start and stop can be used together with /compat:<br>Note: That will start FileZilla Server as normal application and not as a service. Main purpose is for debugging.
+
To start the Administration interface, open a command line console and type run following command:
  
  /compat /start
+
  /opt/filezilla-server/bin/filezilla-server-gui
/compat /stop
 
  
Change the service name & service display name: (0.9.33)<br>Note: This feature helps to create multiple instances.
+
To reload the configuration at runtime:
  
  /servicename SERVICENAME
+
  systemctl reload filezilla-server
/servicedisplayname SERVICEDISPLAYNAME
 

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