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

Join our "Ask Me About" community webinar on May 20th at 9 AM CET and 5 PM CET to explore cybersecurity and monitoring for Data Center and edge IT. Learn about market trends, cutting-edge technologies, and best practices from industry experts.
Register and secure your Critical IT infrastructure

Struxureware portal 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
  • Struxureware portal SSL certificate
Options
  • Subscribe to RSS Feed
  • 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
108
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
Mohamed_Fahmy
Ensign Mohamed_Fahmy Ensign
Ensign

Posted: ‎2020-05-27 08:26 AM

0 Likes
1
1019
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • 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: ‎2020-05-27 08:26 AM

Struxureware portal SSL certificate

Hello,

 

How can i add ssl certificate for Struxureware portal?

Labels
  • Labels:
  • Data Center Operation
  • DCIM Support
  • Portal
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
gsterling
Captain gsterling Captain
Captain

Posted: ‎2020-05-27 10:20 AM

0 Likes
0
1015
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • 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: ‎2020-05-27 10:20 AM

Hello Mohamed

 

Technically speaking it should be possible to add a SSL certificate to StruxureWare Portal. I do not have direct access to the actual procedure for enabling SSL on StruxureWare Portal so my below details are from memory.

 

Here's a summary of what you need to do, given your question I assume you already have the SSL certificate.

 

On the StruxureWare Portal server, go to this folder C:\Program Files\StruxureWare Portal\tomcat-7.0.27\conf.

 

Make a copy of the server.xml file before you edit it in case something goes wrong with this process.

 

Edit the server.xml file with a tool like notepad.exe. About half way down that file you will see these entries (this is the default).

 

<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" URIEncoding="UTF-8" />

 

Comment the above lines by placing the characters " <!--" before the above section and the characters "-->" after the above section so it now looks something like this:

 

<!--
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" URIEncoding="UTF-8" />
-->

 

About 10 to 12 lines further down the server.xml file you should see a section which looks like this:

 

<!--

<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS" />

-->

 

You will need to edit this section to enable secured connections to portal. First, remove the comment characters "<!--" at the top of the section and "-->" at the bottom. Then change the protocol to only accept TLSv1.2 with the "sslProtocol" parameter, and then I'm adding a set of additional parameters after the sslProtocol parameter which includes options for you to specify your SSL cert keystore information.

 

<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLSv1.2"
minSpareThreads="25" maxSpareThreads="75" enableLookups="true" disableUploadTimeout="true"
acceptCount="100" debug="0" keystoreFile=""PATH-to-YOUR-KeyStore-File" keystorePass="KeyStorePassword"/>

 

In the above section replace "PATH-to-YOUR-KeyStore-File" to the full path to your SSL keystore file. If you do not place a full path the web server will look from the "C:\Program Files\StruxureWare Portal\tomcat-7.0.27\" folder.

 

In the above section replace the "KeyStorePassword" value with your keystore password.

 

Once completed, save your changes and restore the portal services.

 

If the above does not work and you cannot access portal, you may need to restore the copy of the server.xml file.

 

Regards

 

Greg Sterling

 

See Answer In Context

Reply

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

Reply 1
gsterling
Captain gsterling Captain
Captain

Posted: ‎2020-05-27 10:20 AM

0 Likes
0
1016
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • 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: ‎2020-05-27 10:20 AM

Hello Mohamed

 

Technically speaking it should be possible to add a SSL certificate to StruxureWare Portal. I do not have direct access to the actual procedure for enabling SSL on StruxureWare Portal so my below details are from memory.

 

Here's a summary of what you need to do, given your question I assume you already have the SSL certificate.

 

On the StruxureWare Portal server, go to this folder C:\Program Files\StruxureWare Portal\tomcat-7.0.27\conf.

 

Make a copy of the server.xml file before you edit it in case something goes wrong with this process.

 

Edit the server.xml file with a tool like notepad.exe. About half way down that file you will see these entries (this is the default).

 

<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" URIEncoding="UTF-8" />

 

Comment the above lines by placing the characters " <!--" before the above section and the characters "-->" after the above section so it now looks something like this:

 

<!--
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" URIEncoding="UTF-8" />
-->

 

About 10 to 12 lines further down the server.xml file you should see a section which looks like this:

 

<!--

<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS" />

-->

 

You will need to edit this section to enable secured connections to portal. First, remove the comment characters "<!--" at the top of the section and "-->" at the bottom. Then change the protocol to only accept TLSv1.2 with the "sslProtocol" parameter, and then I'm adding a set of additional parameters after the sslProtocol parameter which includes options for you to specify your SSL cert keystore information.

 

<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLSv1.2"
minSpareThreads="25" maxSpareThreads="75" enableLookups="true" disableUploadTimeout="true"
acceptCount="100" debug="0" keystoreFile=""PATH-to-YOUR-KeyStore-File" keystorePass="KeyStorePassword"/>

 

In the above section replace "PATH-to-YOUR-KeyStore-File" to the full path to your SSL keystore file. If you do not place a full path the web server will look from the "C:\Program Files\StruxureWare Portal\tomcat-7.0.27\" folder.

 

In the above section replace the "KeyStorePassword" value with your keystore password.

 

Once completed, save your changes and restore the portal services.

 

If the above does not work and you cannot access portal, you may need to restore the copy of the server.xml file.

 

Regards

 

Greg Sterling

 

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