Reputation: 21
Any suggestion, how can I set up SAP Hybris e-commerce solution for the Production environment. I am looking for standalone server setup for Hybris App, Admin console, Datahub, Solr etc.
Like:
First server will have Hybris datahub appserver
Second server will have solr index server+search
Third server will have Hybris backoffice and log collection server.
How to achieve this? I did all on one server before.
Upvotes: 0
Views: 2442
Reputation: 5810
Here, I am assuming you are using Hybris version 6.6
Datahub is nothing but the web application(datahub-webapp-x.x.x.x-RCx.war
), which can be deployed on Tomcat as the normal web application.
You need to install standalone Solr server on the different sandbox then you need to configure endpoint in your storefront & back-office Hybris platform (server) local.properties file.
You can install Hybris suite, with your set of extensions(localextensions.xml). Restrict backoffice access by configuring your upstream server(web or load balancer).
Installation is same as storefront node. As mentioned above (with help of Apache /load balancer) you can restrict any storefront or internet request on this server.
Hybris OOTB there is centralized_logging recipes, which can be used if you have Docker base setup.
Anyway, you can set up your own ELK Stack (Elasticsearch-Logstash-Kibana), which is a good combination as Log Management Solution (Open Source). You can use Redis for the large enterprise solution to decouple the Log Server & Log Shipper.
Tools:
SAP Hybris Commerce Advanced Application Monitoring is a tool for analyzing network traffic within the Hybris system.
Advanced Application Monitoring is vital for administrating and monitoring the health of live, deployed systems. You can analyze and monitor running applications.
Advanced Application Monitoring is based on Spring's support for JMX With the Hybris solution.
Java Management Extensions (JMX) is a Java technology that supplies tools for managing and monitoring various Java software. Data Hub provides JMX services to assist with operational management and external management.
Upvotes: 2