Does Windows Server 2008 R2 have similar limitations to maximum number of opened files like linux have?
Asked
Active
Viewed 4.5k times
2 Answers
8
Windows Servers have limitations on maximum connected users and maximum open files per session. These are default settings:
- Maximum Logged On Users: 16777216
- Maximum open files per session: 16384
You can view them with net config server
command.
Hikedaya
- 126
- 2
-
6Those limits apply to network access to files: not local (including within a remote desktop session). – Richard Mar 20 '11 at 11:35
-
1Richard, thanks for the comment, didn't know about local access. – Hikedaya Mar 20 '11 at 11:44
6
Windows have limits on the number of Open File Handles.It will be around 16,711,680 on 64 bit machines and on 32 bit machines it will be 16,744,448.
64 BIT
32 BIT
This is the reference Microsoft Blog Post Pushing the Limits of Windows by Mark Russinovich https://blogs.technet.microsoft.com/markrussinovich/2009/09/29/pushing-the-limits-of-windows-handles/
techno
- 181
- 1
- 8