Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Notifications
Login / Register
Community
Community
Notifications
close
  • Forums
  • Knowledge Center
  • Events & Webinars
  • Ideas
  • Blogs
Help
Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Login / Register
Sustainability
Sustainability

We Value Your Feedback!
Could you please spare a few minutes to share your thoughts on Cloud Connected vs On-Premise Services. Your feedback can help us shape the future of services.
Learn more about the survey or Click here to Launch the survey
Schneider Electric Services Innovation Team!

DCE issue adding Server Access SSL Certificate

EcoStruxure IT forum

Schneider Electric support forum about installation and configuration for DCIM including EcoStruxure IT Expert, IT Advisor, Data Center Expert, and NetBotz

cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Home
  • Schneider Electric Community
  • EcoStruxure IT
  • EcoStruxure IT forum
  • DCE issue adding Server Access SSL Certificate
Options
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Mute
  • Printer Friendly Page
Invite a Co-worker
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send Invite Cancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Send New Invite Close
Top Experts
User Count
Cory_McDonald
Admiral Cory_McDonald Admiral
124
Jef
Admiral Jef Admiral
110
gsterling
Captain gsterling Captain
71
APC_Steve
Captain APC_Steve Captain
62
View All

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Solved Go to Solution
Back to EcoStruxure IT forum
Solved
ysancoms
ysancoms
Cadet

Posted: ‎2024-01-13 08:44 AM

0 Likes
2
884
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-01-13 08:44 AM

DCE issue adding Server Access SSL Certificate

Having issues add a server SSL Access cert to create secure access to web ui. Getting error message "cannot install the certificate because the private key does not match the provided certificate".

 

Created CSR in DCE. .csr was generated using OpenSSL and then signed by CA. When adding .cer file issued by CA into DCE, error msg appears. I have verified that the keys match using OpenSSL.

 

Running DCE software version 7.8.1.35. 

Attachments
Labels
  • Labels:
  • Data Center Expert
  • Tags:
  • english
Reply

Link copied. Please paste this link to share this article on your social media post.

  • All forum topics
  • Previous Topic
  • Next Topic

Accepted Solutions
Cory_McDonald
Admiral Cory_McDonald Admiral
Admiral

Posted: ‎2024-10-22 08:35 AM

1 Like
0
563
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-10-22 08:35 AM

Hello @ysancoms,

 

I am assuming at this point that you have gotten this issue resolved, but I wanted to add additional context in case anyone else runs into this issue.

 

Data Center Expert certificate signing requests (CSRs) must be generated from within the desktop client.  This will use the servers current Private Key, which is not user manageable.  In older version of DCE, the private key would change on a reboot if a certificate was not installed that used it.  If you received the private key mismatch after going through the CSR process, it is possible that this may be the cause.

 

It is recommended to upgrade to the most recent version of DCE before performing a CSR request for this reason.  You can reach out to technical support if you do not have access to upgrade files within the EcoStruxure IT Entitlements portal.

 

Information on generating a CSR and how to import it back in can be found within the following knowledge base: https://www.apc.com/us/en/faqs/FA407973/

 

Kind Regards,

Cory

See Answer In Context

Reply

Link copied. Please paste this link to share this article on your social media post.

Replies 2
GraceSmith99
GraceSmith99
Cadet

Posted: ‎2024-02-22 10:48 PM

0 Likes
0
811
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-02-22 10:48 PM

It seems like you are encountering an issue with adding a server SSL access certificate to Schneider Electric's StruxureWare Data Center Expert (DCE) due to a private key mismatch error.

 

This error typically occurs when the private key associated with the SSL certificate does not match the one stored in the DCE software. Here are some steps you can take to troubleshoot and resolve this issue:

1. Verify Private Key Matching:
Double-check that the private key used during the CSR generation matches the one associated with the SSL certificate provided by the CA. You can use OpenSSL commands to verify this:
```
openssl x509 -noout -modulus -in certificate.crt | openssl md5
openssl rsa -noout -modulus -in private.key | openssl md5
```
- If the MD5 hashes of the certificate and private key do not match, there is a key mismatch issue that needs to be resolved.

 

2. Reissue the Certificate:
- If the private key mismatch persists, consider reissuing the SSL certificate from the CA using the correct private key. Ensure that the private key is securely stored and accessible during the certificate issuance process.

 

3. Check Certificate Format:
- Ensure that the certificate file (.cer) provided by the CA is in the correct format and includes the full certificate chain if necessary. Some systems may require the certificate chain to be included in the same file.

 

4. Import Certificate Chain:
- If the CA provided an intermediate or root certificate along with the server certificate, make sure to import the entire certificate chain into DCE. The SSL certificate chain should include the server certificate, any intermediate certificates, and the root certificate.

 

5. Use OpenSSL to Convert Formats:
- If needed, convert the certificate file format to PEM or other supported formats using OpenSSL commands. This can help ensure compatibility with DCE.
```
openssl x509 -inform DER -in certificate.cer -out certificate.pem -outform PEM
```

6. Contact Schneider Electric Support:
- If the issue persists after trying the above steps, it may be beneficial to contact Schneider Electric's technical support for further assistance. They can provide specific guidance based on the software version and configuration.

 

By following these steps and ensuring that the private key and certificate match, you should be able to successfully add the server SSL access certificate to your Data Center Expert software.

 

Reply

Link copied. Please paste this link to share this article on your social media post.

Cory_McDonald
Admiral Cory_McDonald Admiral
Admiral

Posted: ‎2024-10-22 08:35 AM

1 Like
0
564
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-10-22 08:35 AM

Hello @ysancoms,

 

I am assuming at this point that you have gotten this issue resolved, but I wanted to add additional context in case anyone else runs into this issue.

 

Data Center Expert certificate signing requests (CSRs) must be generated from within the desktop client.  This will use the servers current Private Key, which is not user manageable.  In older version of DCE, the private key would change on a reboot if a certificate was not installed that used it.  If you received the private key mismatch after going through the CSR process, it is possible that this may be the cause.

 

It is recommended to upgrade to the most recent version of DCE before performing a CSR request for this reason.  You can reach out to technical support if you do not have access to upgrade files within the EcoStruxure IT Entitlements portal.

 

Information on generating a CSR and how to import it back in can be found within the following knowledge base: https://www.apc.com/us/en/faqs/FA407973/

 

Kind Regards,

Cory

Reply

Link copied. Please paste this link to share this article on your social media post.

Preview Exit Preview

never-displayed

You must be signed in to add attachments

never-displayed

 
To The Top!

Forums

  • APC UPS Data Center Backup Solutions
  • EcoStruxure IT
  • EcoStruxure Geo SCADA Expert
  • Metering & Power Quality
  • Schneider Electric Wiser

Knowledge Center

Events & webinars

Ideas

Blogs

Get Started

  • Ask the Community
  • Community Guidelines
  • Community User Guide
  • How-To & Best Practice
  • Experts Leaderboard
  • Contact Support
Brand-Logo
Subscribing is a smart move!
You can subscribe to this board after you log in or create your free account.
Forum-Icon

Create your free account or log in to subscribe to the board - and gain access to more than 10,000+ support articles along with insights from experts and peers.

Register today for FREE

Register Now

Already have an account? Login

Terms & Conditions Privacy Notice Change your Cookie Settings © 2025 Schneider Electric

This is a heading

With achievable small steps, users progress and continually feel satisfaction in task accomplishment.

Usetiful Onboarding Checklist remembers the progress of every user, allowing them to take bite-sized journeys and continue where they left.

of