diff options
author | Aravinda VK <avishwan@redhat.com> | 2016-06-08 16:56:26 +0530 |
---|---|---|
committer | Jeff Darcy <jdarcy@redhat.com> | 2016-06-15 10:28:54 -0700 |
commit | 3b69e25c0f3cf0b958fbd2b8459712ad21239caa (patch) | |
tree | 4d672ac7b4b2735178b17b6a4ea63539f88a86b9 | |
parent | a15bd4ad9f0375549cb3ae2d87cfaba6c5773f40 (diff) |
geo-rep: Error message cleanup
If ssh returns 127 that means the remote gsyncd path is wrong
or push-pem failed during create. Existing error message was
pointing old documentation.
Change-Id: Ifbbb4a604fc0ae0fd5cb2746df6363bf28cde1e9
BUG: 1343943
Signed-off-by: Aravinda VK <avishwan@redhat.com>
Reviewed-on: http://review.gluster.org/14673
Smoke: Gluster Build System <jenkins@build.gluster.org>
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
Reviewed-by: Milind Changire <mchangir@redhat.com>
Reviewed-by: Kotresh HR <khiremat@redhat.com>
-rw-r--r-- | geo-replication/syncdaemon/syncdutils.py | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/geo-replication/syncdaemon/syncdutils.py b/geo-replication/syncdaemon/syncdutils.py index 3feadb83f32..9d89a3cd415 100644 --- a/geo-replication/syncdaemon/syncdutils.py +++ b/geo-replication/syncdaemon/syncdutils.py @@ -253,16 +253,19 @@ def log_raise_exception(excont): if hasattr(gconf, 'transport'): gconf.transport.wait() if gconf.transport.returncode == 127: - logging.warn("!!!!!!!!!!!!!") - logging.warn('!!! getting "No such file or directory" ' - "errors is most likely due to " - "MISCONFIGURATION" - ", please consult https://access.redhat.com" - "/site/documentation/en-US/Red_Hat_Storage" - "/2.1/html/Administration_Guide" - "/chap-User_Guide-Geo_Rep-Preparation-" - "Settingup_Environment.html") - logging.warn("!!!!!!!!!!!!!") + logging.error("getting \"No such file or directory\"" + "errors is most likely due to " + "MISCONFIGURATION, please remove all " + "the public keys added by geo-replication " + "from authorized_keys file in slave nodes " + "and run Geo-replication create " + "command again.") + logging.error("If `gsec_create container` was used, then " + "run `gluster volume geo-replication " + "<MASTERVOL> [<SLAVEUSER>@]<SLAVEHOST>::" + "<SLAVEVOL> config remote-gsyncd " + "<GSYNCD_PATH> (Example GSYNCD_PATH: " + "`/usr/libexec/glusterfs/gsyncd`)") gconf.transport.terminate_geterr() elif isinstance(exc, OSError) and exc.errno in (ENOTCONN, ECONNABORTED): |