How to install Dynatrace for Hybris Project

After installing the DynaTrace agent on the client’s machine, It’s essential to do the configuration correctly. Otherwise, it will be thrown a Lifecycle exception as below when we start the Tomcat Server. Dynatrace installation: org.apache.catalina.LifecycleException: An invalid Lifecycle transition was attempted ([before_stop]) for component [StandardService[Catalina]] in state [INITIALIZED] We need to pass additional parameters to …

How to install Dynatrace for Hybris Project Read More »

How to start/stop the Solr server in Hybris cmd prompt?

sometime we have faced the issues with Hybris server start up time related to Solr is already running. We can start/stop the Solr server by command prompt using below commands. ant startSolrServer ant stopSolrServer Also, We can go to path “hybris/bin/ext-commerce/solrserver/resources/solr/bin” and run the below script to Start/Stop Solr Server Manually. Start the solr server./solr …

How to start/stop the Solr server in Hybris cmd prompt? Read More »

How to Import Database Dump in MySQL ?

Before Import any database dump into MYSQL server, need to make sure that database and user are created. We can create database and account using below command on Terminal. d@MacBook-Air % /usr/local/mysql-8.0.30-macos12-x86_64/bin/mysql -u root -pEnter Password -> Type root passwordmysql> create database db2005;mysql> create user ‘admin1’@’localhost’ identified by ‘db123’;mysql> grant all on db2005.* to ‘admin1’@’localhost’;mysql> …

How to Import Database Dump in MySQL ? Read More »