WingFTP service auto-start fails in CentOS/Fedora/RHEL

The Knowledgebase provides a database of answers to many Technical questions.
Post Reply
FTP
Site Admin
Posts: 2155
Joined: Tue Sep 29, 2009 6:09 am

WingFTP service auto-start fails in CentOS/Fedora/RHEL

Post by FTP »

SELinux is used in enforcing mode under CentOS/Fedora/RHEL, it prevents starting up wftpserver.service when WingFTP is installed under user directory.

So you may install WingFTP under the directory "/opt", then SELinux won't prevent wftpserver.service auto-start:

Code: Select all

cd /opt
wget https://www.wftpserver.com/download/wftpserver-linux-64bit.tar.gz
tar xzvf wftpserver-linux-64bit.tar.gz
cd wftpserver
sudo ./setup.sh


Another method is disabling SELinux, you can take the following commands:
sudo vi /etc/sysconfig/selinux

Replace the line:
SELINUX=enforcing
into:
SELINUX=disabled

sudo reboot
Post Reply