vagrantfile-windows-iis-mssql
vagrantfile-windows-iis-mssql copied to clipboard
WSMAN ERROR CODE: 2150859174
I'm getting the following error when I try to run vagrant up
[WSMAN ERROR CODE: 2150859174]: <f:WSManFault Code='2150859174' Machine='127.0.0.1' xmlns:f='http://schemas.microsoft.com/wbem/wsman/1/wsmanfault'><f:Message>The WS-Management service cannot process the request. This user is allowed a maximum number of 15 concurrent operations, which has been exceeded. Close existing operations for this user, or raise the quota for this user. </f:Message></f:WSManFault> (WinRM::WinRMWSManFault)
I'm seeing a similar issue with vagrant here: https://github.com/mitchellh/vagrant/issues/7489, but I don't know enough about this box to implement the recommended fix.
So the issue is related to vagrant, not to this particular vargrant file?
From the comment that JulianMay left, it seems like the vagrant file needs additional information to connect to a Windows 2008 box and provision it:
winrm set winrm/config/winrs @{MaxShellsPerUser="30"}
winrm set winrm/config/winrs @{MaxConcurrentUsers="30"}
winrm set winrm/config/winrs @{MaxProcessesPerShell="30"}
winrm set winrm/config/service @{MaxConcurrentOperationsPerUser="50"}
I'm brand new to vagrant so I'm still ramping up on how to implement this locally. But this will probably affect other people as well.