MRatWork Forum by Mustafa Ramadhan

Sawo Project - Kloxo-MR Discussions => Kloxo-MR Technical Helps => Topic started by: bigdigillc on 2017-10-26, 20:10:26

Title: FTP and Webmin Issues
Post by: bigdigillc on 2017-10-26, 20:10:26
I can't get FTP or Webmin to work on Centos 7 with fresh install. I've tried reinstalling and a few other suggestions here, but with no luck. The ports are closed and Watchdog says it's ok, but services says it's off. I can turn it on, but it immediately goes off again.

Thoughts?
Title: Re: FTP and Webmin Issues
Post by: atljohnsen on 2017-10-26, 21:14:20
That is strange. I did a fresh install of Kloxo-MR and Webmin on Centos-7 just few weeks ago, - with no issues. 
Check that SSL/TLS is enabled in FTP Configure Icon in Kloxo admin in the Basic box. Then click services icon and check that the state of pure-ftpd is green, if not start it. Also restart webserver: # service httpd restart. Then try to connect with your FTP client (Filezilla) to verify: 
FTP Server: Your server IP address.
FTP Username: Your domain name
FTP Password: Your Kloxo admin password
Port: 21

As for Webmin not working - I have no advice to give - sorry. It has allways worked for me

Title: Re: FTP and Webmin Issues
Post by: bigdigillc on 2017-10-27, 19:30:38
Thank you. I got FTP up. Is Webmin supposed to be included in the install of Kloxo-MR?
Title: Re: FTP and Webmin Issues
Post by: atljohnsen on 2017-10-27, 23:55:10
No, Webmin is a separate install, but a good tool to have in addition to Kloxo-MR.

Here is the procedure to install:
Create a text file with following content (use cut and past):

[Webmin]
name=Webmin Distribution Neutral
#baseurl=http://download.webmin.com/download/yum
mirrorlist=http://download.webmin.com/download/yum/mirrorlist
enabled=1

Save the file as webmin.repo to your computer, then use Filezilla to move it over to your server into the /etc/yum.repos.d folder.

Now install the GPG key with which the packages are signed, with the following commands in SSH:

# cd /tmp
# wget http://www.webmin.com/jcameron-key.asc
# rpm --import jcameron-key.asc
# yum install webmin
# cd /

Start webmin and also auto start webmin at system startup:

# /etc/init.d/webmin start
# chkconfig webmin on

Now, in your browser type your server IP address at port 10000 and webmin should start.

Hope this helps