Hi,
I was unable to reproduce this..
I suggest you drop the DB, edit /opt/kaltura/bin/kaltura-dwh-config.sh and add a set -x
right before line 57 and a set +x
right after line 66.
Also, change line 66 from:
$BASE_DIR/dwh/setup/dwh_setup.sh -u$SUPER_USER -k $BASE_DIR/pentaho/pdi/ -d$BASE_DIR/dwh -h$DWH_HOST -P$DWH_PORT -p$SUPER_USER_PASSWD | tee $BASE_DIR/dwh/logs/dwh_setup.log
to
bash -x $BASE_DIR/dwh/setup/dwh_setup.sh -u$SUPER_USER -k $BASE_DIR/pentaho/pdi/ -d$BASE_DIR/dwh -h$DWH_HOST -P$DWH_PORT -p$SUPER_USER_PASSWD | tee $BASE_DIR/dwh/logs/dwh_setup.log
So we can get some debug info.
Then run
/opt/kaltura/bin/kaltura-dwh-config.sh like so:
/opt/kaltura/bin/kaltura-dwh-config.sh 2>&1 | tee /tmp/kaltura-dwh-config.sh.log
So that we can look at the /tmp/kaltura-dwh-config.sh.log and understand what goes wrong.
I also see:
/opt/kaltura/bin/kaltura-sanity.sh: line 77: monit: command not found
which is of concern. Monit is used as a watchdog for Kaltura, the monit binary is part of the kaltura-monit package which is required by the kaltura-base package. Need to check how come it didn't get installed.
Thanks.