You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@couchdb.apache.org by GitBox <gi...@apache.org> on 2021/04/08 20:53:34 UTC

[GitHub] [couchdb-documentation] mflopez79 opened a new pull request #653: Fixing erlang command to test connectivity between nodes

mflopez79 opened a new pull request #653:
URL: https://github.com/apache/couchdb-documentation/pull/653


   ## Overview
   Following the clustering guide, I found out that running the connectivity erlang command between nodes using an IP address will fail with like
   
   ```
   (bus@10.20.30.40)1> net_kernel:connect_node(car@10.20.30.50).
   * 1: syntax error before: '.'
   ```
   
   if the `node_name@ip` contains single quotes will work
   
   ```
   (bus@10.20.30.40)1> net_kernel:connect_node('car@10.20.30.50').
   true
   ```
   
   As the documentation doesn't contain single quotes, I recommend adding them (the actual example fails as it is as it contains an IP)
   
   ## Testing recommendations
   
   Follow the clustering guide `2.2.2.2. Confirming connectivity between nodes`
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [couchdb-documentation] nickva merged pull request #653: Fixing erlang command to test connectivity between nodes

Posted by GitBox <gi...@apache.org>.
nickva merged pull request #653:
URL: https://github.com/apache/couchdb-documentation/pull/653


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org