HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- HPE ProLiant
- >
- Server Management - Systems Insight Manager
- >
- How to change the startup CMS URL
Server Management - Systems Insight Manager
1834149
Members
2098
Online
110064
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- 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
02-06-2007 08:49 PM
02-06-2007 08:49 PM
After finishing the SIM installation an ICON is placed on the desktop to start the SIM.
This ICON starts browser pointing to localhost instead of the server's name .
I tried to look at it but it starts a checksvc exe , so I couldn't find how to force it to open the browser with the url correctly pointing to the CMS name .
This is annoying because the autogenerated certificate is named after the server's name ( not localhost ) which prompt the IE dialog box for certificate checking
Thanks
This ICON starts browser pointing to localhost instead of the server's name .
I tried to look at it but it starts a checksvc exe , so I couldn't find how to force it to open the browser with the url correctly pointing to the CMS name .
This is annoying because the autogenerated certificate is named after the server's name ( not localhost ) which prompt the IE dialog box for certificate checking
Thanks
Solved! Go to Solution.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2007 08:09 AM
03-01-2007 08:09 AM
Re: How to change the startup CMS URL
hi
You can simply create a new internet link browsing to:
http:your server's nameFQDN:280.
It will no longer ckeck the status of the HP SIM server service though.
Besides, you usually work remotely using a browser...
hope it helps
fred
You can simply create a new internet link browsing to:
http:your server's nameFQDN:280.
It will no longer ckeck the status of the HP SIM server service though.
Besides, you usually work remotely using a browser...
hope it helps
fred
“Life is pleasant. Death is peaceful. It's the transition that's troublesome.” Isaac Asimov
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2007 08:34 AM
03-01-2007 08:34 AM
Re: How to change the startup CMS URL
Hi
The other solution is a bit more complicated. You don't need to change the checksvc.exe file, you 'd rather import the correct certificate.
You need to import a correct ssl certificate to avoid the warning when launching HPSIM. You need to generate the certificate the with its proper attributes. Besides you need to generate a certificate request that HP SIM would accept. In order to do so, the certificate has to be signed with the private key of HP SIM.
regards
hope it helps
fred
ps:more details to come.
The other solution is a bit more complicated. You don't need to change the checksvc.exe file, you 'd rather import the correct certificate.
You need to import a correct ssl certificate to avoid the warning when launching HPSIM. You need to generate the certificate the with its proper attributes. Besides you need to generate a certificate request that HP SIM would accept. In order to do so, the certificate has to be signed with the private key of HP SIM.
regards
hope it helps
fred
ps:more details to come.
“Life is pleasant. Death is peaceful. It's the transition that's troublesome.” Isaac Asimov
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2007 01:41 AM
03-02-2007 01:41 AM
Solution
HI
here is a small how to :
First,extract the private key from the Tomcat keystore with that little utility: http://mark.foster.cc/pub/java/ExportPriv.java
Then,create a certificate request with OpenSSL using this command â openssl req â new â key hpsimkey.pem â out hpsimcertreq.pemâ where hpsimkey.pem is the private key file from step 1. The key to that step was to add the subjectAltName extension by adding these bits to my openssl.cnf:
[ req ]
req_extensions = v3_req # The extensions to add to a certificate request
[ v3_req ]
subjectAltName = DNS:servername.example.com
,DNS:servername, DNS:localhost
One thing worth noting is that I used the FQDN (servername.example.com) for both the CommonName and one of the subjectAltName because some browsers do not consider CommonName when they find a subjectAltName in the certificate.
I then had the request processed by HPâ s internal CA .I loaded the resulting certificate into HPSIM through â Options->Security->Certificates->Server Certificateâ after loading HPâ s CA certificate in â Trusted Certificateâ . I restarted Tomcat and I was in business.
You need to do with with your own CA in your case.
here is an interesting page on the subject, in particular the interoperability test matrix that appeared to match my own testing: http://wiki.cacert.org/wiki/VhostTaskForce
Hope this helps
fred
here is a small how to :
First,extract the private key from the Tomcat keystore with that little utility: http://mark.foster.cc/pub/java/ExportPriv.java
Then,create a certificate request with OpenSSL using this command â openssl req â new â key hpsimkey.pem â out hpsimcertreq.pemâ where hpsimkey.pem is the private key file from step 1. The key to that step was to add the subjectAltName extension by adding these bits to my openssl.cnf:
[ req ]
req_extensions = v3_req # The extensions to add to a certificate request
[ v3_req ]
subjectAltName = DNS:servername.example.com
,DNS:servername, DNS:localhost
One thing worth noting is that I used the FQDN (servername.example.com) for both the CommonName and one of the subjectAltName because some browsers do not consider CommonName when they find a subjectAltName in the certificate.
I then had the request processed by HPâ s internal CA .I loaded the resulting certificate into HPSIM through â Options->Security->Certificates->Server Certificateâ after loading HPâ s CA certificate in â Trusted Certificateâ . I restarted Tomcat and I was in business.
You need to do with with your own CA in your case.
here is an interesting page on the subject, in particular the interoperability test matrix that appeared to match my own testing: http://wiki.cacert.org/wiki/VhostTaskForce
Hope this helps
fred
“Life is pleasant. Death is peaceful. It's the transition that's troublesome.” Isaac Asimov
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP