You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by dm...@apache.org on 2013/10/25 20:02:08 UTC

git commit: AMBARI-3590. Hive MetaStore start fails due to JDBC connection check failing (Vitaly Brodetskyi via dlysnichenko)

Updated Branches:
  refs/heads/trunk bb62d39bc -> a1fedaf88


AMBARI-3590. Hive MetaStore start fails due to JDBC connection check failing (Vitaly Brodetskyi  via dlysnichenko)


Project: http://git-wip-us.apache.org/repos/asf/incubator-ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ambari/commit/a1fedaf8
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ambari/tree/a1fedaf8
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ambari/diff/a1fedaf8

Branch: refs/heads/trunk
Commit: a1fedaf88a3e8464c89657ce7ab18e676e6ce0f3
Parents: bb62d39
Author: Lisnichenko Dmitro <dl...@hortonworks.com>
Authored: Fri Oct 25 21:00:54 2013 +0300
Committer: Lisnichenko Dmitro <dl...@hortonworks.com>
Committed: Fri Oct 25 21:00:54 2013 +0300

----------------------------------------------------------------------
 .../src/main/puppet/modules/hdp-hive/manifests/params.pp       | 2 +-
 .../src/main/puppet/modules/hdp-oozie/manifests/params.pp      | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ambari/blob/a1fedaf8/ambari-agent/src/main/puppet/modules/hdp-hive/manifests/params.pp
----------------------------------------------------------------------
diff --git a/ambari-agent/src/main/puppet/modules/hdp-hive/manifests/params.pp b/ambari-agent/src/main/puppet/modules/hdp-hive/manifests/params.pp
index 4fec035..65f321e 100644
--- a/ambari-agent/src/main/puppet/modules/hdp-hive/manifests/params.pp
+++ b/ambari-agent/src/main/puppet/modules/hdp-hive/manifests/params.pp
@@ -25,7 +25,7 @@ class hdp-hive::params() inherits hdp::params
   $hive_metastore_user_name = hdp_default("hive-site/javax.jdo.option.ConnectionUserName","dbusername")
   $hive_metastore_user_passwd = hdp_default("hive-site/javax.jdo.option.ConnectionPassword","dbpassword")
   $hive_server_conf_dir = hdp_default("hive_server_conf_dir", "/etc/hive/conf.server")
-  $hive_jdbc_connection_url = hdp_default("hive_jdbc_connection_url", "")
+  $hive_jdbc_connection_url = hdp_default("hive-site/javax.jdo.option.ConnectionURL", "")
 
   ### users
   $hive_user = $hdp::params::hive_user

http://git-wip-us.apache.org/repos/asf/incubator-ambari/blob/a1fedaf8/ambari-agent/src/main/puppet/modules/hdp-oozie/manifests/params.pp
----------------------------------------------------------------------
diff --git a/ambari-agent/src/main/puppet/modules/hdp-oozie/manifests/params.pp b/ambari-agent/src/main/puppet/modules/hdp-oozie/manifests/params.pp
index 4854c25..da7c908 100644
--- a/ambari-agent/src/main/puppet/modules/hdp-oozie/manifests/params.pp
+++ b/ambari-agent/src/main/puppet/modules/hdp-oozie/manifests/params.pp
@@ -28,9 +28,9 @@ class hdp-oozie::params() inherits hdp::params
   $ext_zip_name = hdp_default("ext_zip_name","ext-2.2.zip")
 
   ###oozie jdbc
-  $oozie_metastore_user_name = hdp_default("oozie_metastore_user_name","oozie")
-  $oozie_metastore_user_passwd = hdp_default("oozie_metastore_user_passwd","")
-  $oozie_jdbc_connection_url = hdp_default("oozie_jdbc_connection_url", "")
+  $oozie_metastore_user_name = hdp_default("oozie-site/oozie.service.JPAService.jdbc.username","oozie")
+  $oozie_metastore_user_passwd = hdp_default("oozie-site/oozie.service.JPAService.jdbc.password","")
+  $oozie_jdbc_connection_url = hdp_default("oozie-site/oozie.service.JPAService.jdbc.url", "")
 
   ### oozie-env
   $conf_dir = $hdp::params::oozie_conf_dir