AMBARI-10002. Change error message during ranger admin install failure (Gautam Borad via alejandro)
Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/73a80ef1 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/73a80ef1 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/73a80ef1 Branch: refs/heads/branch-2.0.0 Commit: 73a80ef15fd68746b444c6b6acb8b2cf76df53a5 Parents: 634af89 Author: Alejandro Fernandez <[email protected]> Authored: Tue Mar 10 14:10:16 2015 -0700 Committer: Alejandro Fernandez <[email protected]> Committed: Tue Mar 10 14:10:16 2015 -0700 ---------------------------------------------------------------------- .../common-services/RANGER/0.4.0/package/scripts/setup_ranger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/73a80ef1/ambari-server/src/main/resources/common-services/RANGER/0.4.0/package/scripts/setup_ranger.py ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/common-services/RANGER/0.4.0/package/scripts/setup_ranger.py b/ambari-server/src/main/resources/common-services/RANGER/0.4.0/package/scripts/setup_ranger.py index 3134567..e2b81c8 100644 --- a/ambari-server/src/main/resources/common-services/RANGER/0.4.0/package/scripts/setup_ranger.py +++ b/ambari-server/src/main/resources/common-services/RANGER/0.4.0/package/scripts/setup_ranger.py @@ -243,7 +243,7 @@ def check_db_connnection(): return True else: Logger.info( - 'Ranger Admin installation Failed! Ranger requires DB client installed on Ranger Host and DB server running on DB Host') + 'Ranger Admin installation Failed! Ranger requires DB client installed on Ranger Host, DB administrative privileges configured for connectivity from the Ranger Admin host to the configured DB host/instance and the DB server up and running on the DB host.') sys.exit(1) def get_status_output(cmd):
