From 96d258ab43fa73cd9fc1ae5a32d3d9d07828b3a2 Mon Sep 17 00:00:00 2001 From: Hector Anapan Date: Wed, 30 Aug 2017 00:08:53 -0400 Subject: Adding required DB table for LCM functionality 1) Added the DB hostnames to map to the MySQL container's docker IP in APP-C Container's /etc/hosts, then 2) added installAppcDb.sh to create the "appcctl" database and its "transactions" table (in appcctl.dump) since it is needed to complete the LCM functionality, then 3) added some properties in appc.properties since they were used in local testing, but need to double check if they are absolutely necessary Change-Id: I7be65412ea4a87f7295adc9b6a69fe7ad917d62c Signed-off-by: Hector Anapan Issue: [APPC-122] Signed-off-by: Hector Anapan --- installation/src/main/properties/appc.properties | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'installation/src') diff --git a/installation/src/main/properties/appc.properties b/installation/src/main/properties/appc.properties index aa6ba61..27c215b 100644 --- a/installation/src/main/properties/appc.properties +++ b/installation/src/main/properties/appc.properties @@ -40,8 +40,14 @@ appc.service.logic.module.name=APPC appc.topology.dg.method=topology-operation-all appc.topology.dg.version=2.0.0 +# TEMP - Properties that might be needed to make the AAI-APPC connection +org.openecomp.appc.db.url.appcctl=jdbc:mysql://dbhost:3306/appcctl +org.openecomp.appc.db.user.appcctl=appcctl +org.openecomp.appc.db.pass.appcctl=appcctl - +org.openecomp.appc.db.url.sdnctl=jdbc:mysql://dbhost:3306/sdnctl +org.openecomp.appc.db.user.sdnctl=sdnctl +org.openecomp.appc.db.pass.sdnctl=gamma ### ### @@ -112,7 +118,7 @@ DCAE.dmaap.appc.username=test DCAE.dmaap.appc.password=test DCAE.dmaap.event.pool.members=10.0.11.1:3904 -#OAM Listener +# OAM Listener appc.OAM.disabled=true appc.OAM.provider.url=http://localhost:8181/restconf/operations/appc-oam appc.OAM.poolMembers=10.0.11.1:3904 -- cgit 1.2.3-korg