Christy Smith
Christy Smith

Reputation: 21

SAP Hybris Installation and Deployment Architecture for production environment

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:

How to achieve this? I did all on one server before.

Upvotes: 0

Views: 2442

Answers (1)

HybrisHelp
HybrisHelp

Reputation: 5810

Here, I am assuming you are using Hybris version 6.6

Hybris datahub server

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.


Solr server

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.


Hybris Application server (Storefront server)

You can install Hybris suite, with your set of extensions(localextensions.xml). Restrict backoffice access by configuring your upstream server(web or load balancer).


Hybris Application server for backend (backoffice)

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.


Centralized logging

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:

  • Logstash: As a log shipper and a log indexer
  • Redis: As a broker – used as a queuing system
  • ElasticSearch: As a log indexer – store and index logs
  • Kibana: As a front-end viewer – a nice UI with useful extra features

Advanced Application Monitoring

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.


Monitor Data Hub

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.


You can find detail answer here

Upvotes: 2

Related Questions