How to configure MySQL Connector in SAP Hybris ?
Hybris OOTB shipped with
HSQL DB, If you want to configure MySQL as Hybris DB then follow the below steps and you go!!- Download MySql connector (
.jar), as it is not shipped with Hybris OOTB suite - Copy downloaded connector (
.jar) file to${HYBRIS_BIN_DIR}/platform/lib/dbdriverdirectory - Add below
propertiesto yourlocal.propertiesfiledb.url=jdbc:mysql://hostname:port/dbName?useConfigs=maxPerformance&characterEncoding=utf8&useSSL=falsedb.driver=com.mysql.jdbc.Driverdb.username=rootdb.password=password - Initialize the system (
ant initialize)
Comments
Post a Comment