Comments
-
vCloud Director would be nice. :)
-
The release notes links in the portal should be live now. IPAM: https://www.solarwinds.com/documentation/kbloader.aspx?kb=IPAM_2020-2-5_release_notes NTA: https://www.solarwinds.com/documentation/kbloader.aspx?kb=NTA_2020-2-5_release_notes…
-
Installed without issue on my server. Seeing similar reports from others on the Slack channel.
-
Poking them about it.
-
It's in the customer portal:
-
With ESX 4.0 Update 1 released, does this alter anything? It looks like they are releasing a new set of ESX SNMP MIBs with this version that can be imported into an SNMP management system like NPM. Do these new MIBs resolve the issues you guys have been having with ESX 4?
-
Would you be willing to send me (or attach) a copy of your httpd.conf?
-
Hmm. Only thing I see different is around some indentation/whitespace which shouldn't matter. Are you still running the 2.2.x Apache version or did you apply the 2.4? Any .htaccess files in the Apache path?
-
And user 'carlyc' can login to helpdesk directly with that username? Aka without adding a domain name, etc?
-
Ok. In httpd.conf, NTLMDomain needs to be the NetBIOS domain name not the DNS name.
-
Authentication method: HTTP Header Username parameter: REMOTE_USER Do you have an AD/LDAP connection created for your domain under Clients > AD/LDAP Connections?
-
I'm using Apache 2.4 from Apache Haus and they have the module on their page. http://www.apachehaus.com/cgi-bin/download.plx I'm not sure on the module for 2.2
-
What is the version/build number of WHD you're running? Have you tried accessing it with another browser? Unfortunately IE tends to not give helpful error messages by default.
-
Ah. I remember having grief around the certificate as I didn't use the token signing one. ADFS is pretty chatty in the logs; it might shed some light.
-
I'm sure you've already thought of this, but you have made sure that the name and FQDN resolve to an IP of the machine? What is the error you get when you try to access it? Also, what database are you using for it?
-
I had the exact same issue referenced above; where you could browse the WMI services/processes but APM gave an invalid class. Here's what fixed it: On the server you're trying to monitor pop open Regedit and go to the following key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PerfProc\Performance Look for a…
-
We're using ADFS 3.0 with our WHD install. Here's how we have it configured: On WHD side: sign-in page URL: https://adfs.fqdn.here/adfs/ls log out URL: https://adfs.fqdn.here/adfs/ls/?wa=wsignout1.0 The verification certificate is the the Token-signing cert from ADFS On the ADFS side: Relying party identifiers:…
-
I don't recall editing anything in the WebHelpDesk\conf folder, and for whd.conf it was just adjusting some of the memory settings for performance. Here's what I changed in httpd.conf (aside from adding the section I sent before): Set these variables: ServerRoot ServerName Commented in these modules: LoadModule…
-
Console? It's in the customer portal. If you don't see it there, you'll probably have to hit up one of the SolarWinds guys one here or put in a ticket.
-
Ok; so we're talking about the same thing. I have the regexes configured for the expected replies; so I'll just have to see if I can test the monitor again next time the app goes boom.
-
That actually helps narrow it down a bit. From your SAM server, can you run wbemtest, connect to the Windows 7 PC and authenticate using the SAM credential for the node. Then see if you can access the cimv2 namespace and enumerate win32_service. I'm guessing that something is borked with your WMI stack and those services…
-
Here's the current script: Import-Module OfficeWebApps $health = (Get-OfficeWebAppsMachine).HealthStatus if ($health -eq 'Healthy'){ $stat = 0 } else { $stat = 1 } Write-Host "Message.Health: $health" Write-Host "Statistic.Health: $stat" Exit($stat) Monitor setup: http://dsolodow.github.io/SAM_PowerShell_script_setup.PNG…
-
Grab a copy of tcping Can you tcping port 8081 on that box from another machine?
-
SolarWinds Orion Network Performance Monitor (Orion NPM) version 10.4 Hotfix 3 This hotfix addresses the following issues: - NPM stops storing polled data, causing Microsoft Message Queuing (MSMQ) to grow excessively. The SolarWinds DataProcessor service keeps adding threads. - vCenter polling is not able to store data to…
-
Yep; we had that at a site because of an ASA; it treated the polling traffic as bad and blocked it.
-
I'm not seeing anything either; I'll poke the Dell resources helping on the eval. Is it possible to poll via WSMAN? I know the CMC can be communicated to that way, and the info might be available there. Have to dig through it, but if Orion can't speak it doesn't much matter.
-
Yes, it's the only VRTx currently. No redundant RAID controllers, 4 power supplies, 2 blades. 6 hard drives, no PCI cards. The IO Module is R1-2401 VRTX 1Gb Switch Module
-
Sure. In the httpd.conf here's what I added after the various module enables: <Location /helpdesk> AuthName "Helpdesk" AuthType SSPI NTLMAuth On NTLMAuthoritative On NTLMOfferBasic On NTLMDomain DOMAINNAME NTLMOmitDomain On <RequireAll> <RequireAny> Require valid-user </RequireAny> <RequireNone> Require user "ANONYMOUS…
-
It's newer than .975; build number is 1034 And yeah, I figured a lot would get pushed back for the java upgrade and framework migration.
-
It was a fresh install of 2012 R2. The only Windows features I installed were HyperV, Failover clustering and the Powershell pieces for each. My HyperV servers are running Server Core so they're pretty minimal. I didn't do anything unusual on the servers or in Orion for them. In Orion they are set to use WMI for polling…