cancel
Showing results for 
Search instead for 
Did you mean: 

FTP server

Former Member
0 Kudos

Hi All,

How to check FTP server is installed in a machine ?. If I need to install....How do I do that ?

Thanks, SS

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

All depends on the platform,

In Windows you need to do checks on FTP service that should be up (for example. you can create Perl script for this). If you don't have FTP installed, you'll need to install IIS (partially, if you are interested only in FTP).

FTP comes by default on Unix/Linux systems. To check if it's active you can use script to check ftpd daemon in the list of processes (e.g. ps -ef |grep ftpd).

Thanks,

Mike

Former Member
0 Kudos

Thank you Mike

SS