Why does FTP work without the IIS service?

3

I'm using Windows Server 2008 R2. I just stopped IIS and tried using FTP—it worked! So, is FTP independent from IIS? How does it work if IIS is stopped?

winman

Posted 2012-12-14T05:46:54.867

Reputation: 179

1Please do not cross post questions on StackExchange sites. – cutrightjm – 2012-12-14T05:56:41.650

Answers

2

In logical terms the FTP service is part of IIS which is a collection of services hence the name 'Internet Information Services'.

In Windows Server the role is called 'Web Server (IIS)' which is a bit misleading because you can run the ftp service without installing any http related services.

The FTP service runs as its own Windows Service process 'Microsoft FTP Service' (svchost.exe -k ftpsvc)

Peter Hahndorf

Posted 2012-12-14T05:46:54.867

Reputation: 10 677