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/dbdriver
directory - Add below
properties
to yourlocal.properties
filedb.url=jdbc:mysql://hostname:port/dbName?useConfigs=maxPerformance&characterEncoding=utf8&useSSL=false
db.driver=com.mysql.jdbc.Driver
db.username=root
db.password=password
- Initialize the system (
ant initialize
)
Comments
Post a Comment