- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- ProLiant Deployment and Provisioning
- >
- DL 360 G8 SPP + Windows Server 2008 R2
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2012 02:32 PM
12-14-2012 02:32 PM
DL 360 G8 SPP + Windows Server 2008 R2
i have disabled Hp new provisioning feature and am booting from a usb drive using Microsoft Deployment Toolkit image technology, i have the SPP dvd setup as a job to run after the OS unpacks and installs, runs fine until we launch the HP Homepage and go into the settings area, it isnt installing all optional components so we can use SNMP, etc. Does anyone have the hpsum command line entries to force it to install all components regardless of optional or not? Right now i am using the command hpsum /f:softwareonly /s switches. HELP !!!
- Tags:
- HPE SUM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2012 07:51 AM
12-15-2012 07:51 AM
Re: DL 360 G8 SPP + Windows Server 2008 R2
I think the default behavior on G8 servers is that HPSUM will not install the agents as G8 servers now have agentless monitoring via the iLo 4 card. I'll check the switches I'm using in my deployments as we had to force the agent installation.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-17-2012 06:26 AM
12-17-2012 06:26 AM
Re: DL 360 G8 SPP + Windows Server 2008 R2
I understand the ILO4 card will do monitoring but we still need to use the homepage to look for memory issues, cpu failures, get to logs, etc on servers. The agents all need to be installed for this information to populate. Were not used to Wbem related data and use SNMP heavily in our environment to manage systems and logs.
Thank you for looking at those switches for me.
- Tags:
- snmp
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-17-2012 06:31 AM
12-17-2012 06:31 AM
Re: DL 360 G8 SPP + Windows Server 2008 R2
I'm using
- /express_install /use_ams /use_snmp
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-17-2012 07:25 AM
12-17-2012 07:25 AM
Re: DL 360 G8 SPP + Windows Server 2008 R2
Thank you so much that got me closer. Now i need to add a task to configure the trap and security for snmp for our environment, the hp homepage changed now to snmp but no data until i configured those settings and restarted the snmp service which then restarted the hp insight services.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-17-2012 07:33 AM
12-17-2012 07:33 AM
Re: DL 360 G8 SPP + Windows Server 2008 R2
I script all these things at the end of my build. Here is a script to do the SNMP settings on a windows machine:
REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SNMP\Parameters\PermittedManagers" /v 1 /t REG_SZ /d "127.0.0.1" /f >NUL
REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SNMP\Parameters\PermittedManagers" /v 2 /t REG_SZ /d "127.0.0.2" /f >NUL
REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SNMP\Parameters\PermittedManagers" /v 3 /t REG_SZ /d "127.0.0.3" /f >NUL
REM Add community strings
REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SNMP\Parameters\ValidCommunities" /v myreadcom /t REG_DWORD /d "4" /f >NUL
REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SNMP\Parameters\ValidCommunities" /v mywritecom /t REG_DWORD /d "8" /f >NUL
REM Trap Destination
REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SNMP\Parameters\TrapConfiguration\vhi" /v 1 /t REG_SZ /d "10.10.10.10" /f >NUL
REM Enable Authentication Traps
REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SNMP\Parameters" /v EnableAuthenticationTraps /t REG_DWORD /d 1 /f >NUL