Installation guide for Linux edition

Please post here if you have problems in using Wing FTP Server.
Locked
FTP
Site Admin
Posts: 2072
Joined: Tue Sep 29, 2009 6:09 am

Installation guide for Linux edition

Post by FTP »

* Installation
-------------------
Wing FTP Server Linux edition ships in a gzipped tar archive. You can extract it with the following command line:
tar xzvf wftpserver-linux-64bit.tar.gz

That will extract the files from the package into a directory named "wftpserver". Change your current working directory to this directory via command:
cd wftpserver

Then launch the setup script via command:
sudo ./setup.sh

When installation is completed, you can launch web browser and open "http://YourServerIP:5466" for the web administration. Here, 5466 is the default web admin port, you can change it during the installation.


* Quickstart Guide
-------------------
Please check the help manual here: https://www.wftpserver.com/help/ftpserver/aoe.htm


* How to upgrade?
-----------------

Code: Select all

 cd "Parent folder of WingFTP's folder"
 wget --no-check-certificate https://www.wftpserver.com/download/wftpserver-linux-64bit.tar.gz
 tar xzvf wftpserver-linux-64bit.tar.gz
 sudo /etc/init.d/wftpserver restart

* How to start WingFTP service?
-----------------------------------
Go to WingFTP's installation folder and execute: sudo ./wftpserver
Image

Or you can start WingFTP service via command: sudo /etc/init.d/wftpserver start

Or you can start WingFTP service via command: sudo systemctl start wftpserver


* How to stop WingFTP service?
-----------------------------------
You can stop WingFTP service via command: sudo /etc/init.d/wftpserver stop

Or you can stop WingFTP service via command: sudo systemctl stop wftpserver

Or execute the command "shutdown" in the administration console:
Image


* Uninstallation
-----------------------
Stop the WingFTP service first, then remove the installation directory of Wing FTP Server.
Locked