Command-line arguments (Server): Difference between revisions

From FileZilla Wiki
Jump to navigationJump to search
m (Reverted edits by SaraLee (Talk) to last revision by CodeSquid)
No edit summary
 
(48 intermediate revisions by 31 users not shown)
Line 1: Line 1:
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:
To stop/start FileZilla Server open a cmd.exe or PowerShell console with Administrator privileges and type the following command:


  /start
  net stop filezilla-server
  /stop
  net start filezilla-server


Installing the service for manual startup:


/install
To reload the configuration at runtime:


Installing the service for start at boot:
sc control filezilla-server paramchange


/install auto
== FileZilla Server command-line arguments on Debian ==


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


  /uninstall
  sudo systemctl start filezilla-server
sudo systemctl stop filezilla-server


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


  /reload-config
  /opt/filezilla-server/bin/filezilla-server-gui


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 reload the configuration at runtime:


  /compat /start
  systemctl reload filezilla-server
/compat /stop
 
Change the service name & service display name: (0.9.33)<br>Note: This feature helps to create multiple instances.
 
/servicename SERVICENAME
/servicedisplayname SERVICEDISPLAYNAME

Latest revision as of 11: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