Repository: ambari Updated Branches: refs/heads/trunk 72ad30b9a -> 86c253a97
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/86c253a9 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/86c253a9 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/86c253a9 Branch: refs/heads/trunk Commit: 86c253a97e15a9200c88e0ccf083efda18cb7aa4 Parents: 72ad30b Author: Alejandro Fernandez <[email protected]> Authored: Tue Mar 10 11:55:32 2015 -0700 Committer: Alejandro Fernandez <[email protected]> Committed: Tue Mar 10 11:56:43 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/86c253a9/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):
