{"id":6596,"date":"2014-03-26T12:10:14","date_gmt":"2014-03-26T09:10:14","guid":{"rendered":"http:\/\/railsware.com\/blog\/?p=6596"},"modified":"2020-12-28T19:25:22","modified_gmt":"2020-12-28T16:25:22","slug":"interconnecting-elixir-nodes","status":"publish","type":"post","link":"https:\/\/railsware.com\/blog\/interconnecting-elixir-nodes\/","title":{"rendered":"Interconnecting Elixir nodes"},"content":{"rendered":"Elixir is a functional language built on top of Erlang VM. Therefore it uses Erlang mechanism for communication with nodes. Erlang has one simple rule: everyone connects to everyone. It provides a simple authentication mechanism by tokens called cookie.\r\nIn this article I want to show how to use remote shell for interconnection between Elixir nodes.\r\n<h2>Start elixir shell<\/h2>\r\n<pre class=\"lang:default decode:true \">iex --sname node --cookie secret_token -S mix\r\n<\/pre>\r\nWe use sname and cookie parameters to specify short name and cookie.\r\nMake sure that settings were applied successfully:\r\n<pre class=\"lang:default decode:true \">iex(node@noname)&gt; Node.self\r\n:node@noname\r\niex(node@noname)&gt; Node.get_cookie\r\n:secret_token\r\n<\/pre>\r\nStart another shell, but without cookie:\r\n<pre class=\"lang:default decode:true \">iex --sname node2\r\n<\/pre>\r\nIn this shell we\u2019ll use Node module to set cookie. We can try to ping our first node:\r\n<pre class=\"lang:default decode:true \">iex(node2@noname)&gt; :net_adm.ping(:node@noname)\r\n:pang\r\n<\/pre>\r\n:pang atom was returned because cookies weren&#8217;t matched and connection wasn&#8217;t established. Setup identical cookie for the second node and try again:\r\n<pre class=\"lang:default decode:true \">iex(node2@noname)&gt; Node.set_cookie :secret_token\r\ntrue\r\niex(node2@noname)&gt; :net_adm.ping(:node@noname)\r\n:pong\r\n<\/pre>\r\n<h2>Connect to remote shell using Job Control Mode JCL<\/h2>\r\nActivate this mode using Control + G:\r\n<pre class=\"lang:default decode:true \">iex(node2@noname)&gt;\r\nUser switch command\r\n --&gt;\r\nDisplay help message:\r\niex(node2@noname)&gt;\r\nUser switch command\r\n  --&gt; h\r\n  c [nn]            - connect to job\r\n  i [nn]            - interrupt job\r\n  k [nn]            - kill job\r\n  j                 - list all jobs\r\n  s [shell]         - start local shell\r\n  r [node [shell]]  - start remote shell\r\n  q                 - quit erlang\r\n  ? | h             - this message\r\n<\/pre>\r\nShow list of jobs:\r\n<pre class=\"lang:default decode:true \">--&gt; j\r\n   1* {erlang,apply,[#Fun,[]]}\r\n<\/pre>\r\nWe have only one job which is our current shell. Start remote Elixir shell:\r\n<pre class=\"lang:default decode:true \"> --&gt; r node@noname 'Elixir.IEx'\r\n<\/pre>\r\nVery important to specify the second parameter as Elixir.IEx module, otherwise Erlang shell will be started instead of Elixir.\r\n\r\nMake sure that the shell was started:\r\n<pre class=\"lang:default decode:true \"> --&gt; j\r\n   1  {erlang,apply,[#Fun,[]]}\r\n   2* {node@noname,'Elixir.IEx',start,[]}\r\n<\/pre>\r\nConnect to job number 2 which is our first node:\r\n<pre class=\"lang:default decode:true \"> --&gt; c 2\r\nEshell V5.10.2  (abort with ^G)\r\niex(node@noname)&gt;\r\n<\/pre>\r\nSucceed! Make sure that we were connected to the right node:\r\n<pre class=\"lang:default decode:true \">iex(node@noname)&gt; Node.self\r\n:node@noname\r\n<\/pre>\r\nNow we\u2019re able to monitor, change configuration, execute any code in the connected node.\r\n<h2>Disconnect node<\/h2>\r\nOnce all the work was done, don\u2019t forget to disconnect remote shell in the right way. Press Control + G:\r\n<pre class=\"lang:default decode:true \">User switch command\r\n --&gt; j\r\n   1  {erlang,apply,[#Fun,[]]}\r\n   2* {node@noname,shell,start,[]}\r\n<\/pre>\r\nKill job number 2 and make sure that shell was disconnected\r\n<pre class=\"lang:default decode:true \">k 2\r\n --&gt; j\r\n   1  {erlang,apply,[#Fun,[]]}\r\n<\/pre>\r\nAnd switch back to second node:\r\n<pre class=\"lang:default decode:true \"> --&gt; c 1\r\niex(node2@noname)&gt; Node.self\r\n:node2@noname\r\n<\/pre>","protected":false},"excerpt":{"rendered":"<p>Elixir is a functional language built on top of Erlang VM. Therefore it uses Erlang mechanism for communication with nodes. Erlang has one simple rule: everyone connects to everyone. It provides a simple authentication mechanism by tokens called cookie. In this article I want to show how to use remote shell for interconnection between Elixir&#8230;<\/p>\n","protected":false},"author":44,"featured_media":9458,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[3],"tags":[],"coauthors":["Olexander Paladiy"],"class_list":["post-6596","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-development"],"acf":[],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"Elixir is a functional language built on top of Erlang VM. Therefore it uses Erlang mechanism for communication with nodes. Erlang has one simple rule: everyone connects to everyone. It provides a simple authentication mechanism by tokens called cookie. In this article I want to show how to use remote shell for interconnection between Elixir\" \/>\n\t<meta name=\"robots\" content=\"max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n\t<meta name=\"author\" content=\"Olexander Paladiy\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/railsware.com\/blog\/interconnecting-elixir-nodes\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"| Blog on Engineering, Product Management, Transparency, Culture and many more...\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Interconnecting Elixir nodes | Railsware Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Elixir is a functional language built on top of Erlang VM. Therefore it uses Erlang mechanism for communication with nodes. Erlang has one simple rule: everyone connects to everyone. It provides a simple authentication mechanism by tokens called cookie. In this article I want to show how to use remote shell for interconnection between Elixir\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/railsware.com\/blog\/interconnecting-elixir-nodes\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2017\/12\/Interconnecting-Elixir-nodes.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2017\/12\/Interconnecting-Elixir-nodes.png\" \/>\n\t\t<meta property=\"og:image:width\" content=\"360\" \/>\n\t\t<meta property=\"og:image:height\" content=\"360\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2014-03-26T09:10:14+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2020-12-28T16:25:22+00:00\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/interconnecting-elixir-nodes\\\/#article\",\"name\":\"Interconnecting Elixir nodes | Railsware Blog\",\"headline\":\"Interconnecting Elixir nodes\",\"author\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/author\\\/olexander-paladiy\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/railsware.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/12\\\/Interconnecting-Elixir-nodes.png\",\"width\":360,\"height\":360,\"caption\":\"Interconnecting Elixir nodes\"},\"datePublished\":\"2014-03-26T12:10:14+03:00\",\"dateModified\":\"2020-12-28T19:25:22+03:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/interconnecting-elixir-nodes\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/interconnecting-elixir-nodes\\\/#webpage\"},\"articleSection\":\"Engineering\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/interconnecting-elixir-nodes\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/railsware.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/category\\\/development\\\/#listItem\",\"name\":\"Engineering\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/category\\\/development\\\/#listItem\",\"position\":2,\"name\":\"Engineering\",\"item\":\"https:\\\/\\\/railsware.com\\\/blog\\\/category\\\/development\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/interconnecting-elixir-nodes\\\/#listItem\",\"name\":\"Interconnecting Elixir nodes\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/interconnecting-elixir-nodes\\\/#listItem\",\"position\":3,\"name\":\"Interconnecting Elixir nodes\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/category\\\/development\\\/#listItem\",\"name\":\"Engineering\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/#organization\",\"description\":\"Blog on Engineering, Product Management, Transparency, Culture and many more...\",\"url\":\"https:\\\/\\\/railsware.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/railsware.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/Logo-circle.png\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/interconnecting-elixir-nodes\\\/#organizationLogo\",\"width\":3137,\"height\":1054,\"caption\":\"Railsware logo\"},\"image\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/interconnecting-elixir-nodes\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/author\\\/olexander-paladiy\\\/#author\",\"url\":\"https:\\\/\\\/railsware.com\\\/blog\\\/author\\\/olexander-paladiy\\\/\",\"name\":\"Olexander Paladiy\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/interconnecting-elixir-nodes\\\/#authorImage\",\"url\":\"https:\\\/\\\/railsware.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/06\\\/olexander-paladiy-96x96.jpg\",\"width\":96,\"height\":96,\"caption\":\"Olexander Paladiy\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/interconnecting-elixir-nodes\\\/#webpage\",\"url\":\"https:\\\/\\\/railsware.com\\\/blog\\\/interconnecting-elixir-nodes\\\/\",\"name\":\"Interconnecting Elixir nodes | Railsware Blog\",\"description\":\"Elixir is a functional language built on top of Erlang VM. Therefore it uses Erlang mechanism for communication with nodes. Erlang has one simple rule: everyone connects to everyone. It provides a simple authentication mechanism by tokens called cookie. In this article I want to show how to use remote shell for interconnection between Elixir\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/interconnecting-elixir-nodes\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/author\\\/olexander-paladiy\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/author\\\/olexander-paladiy\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/railsware.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/12\\\/Interconnecting-Elixir-nodes.png\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/interconnecting-elixir-nodes\\\/#mainImage\",\"width\":360,\"height\":360,\"caption\":\"Interconnecting Elixir nodes\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/interconnecting-elixir-nodes\\\/#mainImage\"},\"datePublished\":\"2014-03-26T12:10:14+03:00\",\"dateModified\":\"2020-12-28T19:25:22+03:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/railsware.com\\\/blog\\\/\",\"description\":\"Blog on Engineering, Product Management, Transparency, Culture and many more...\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Interconnecting Elixir nodes | Railsware Blog","description":"Elixir is a functional language built on top of Erlang VM. Therefore it uses Erlang mechanism for communication with nodes. Erlang has one simple rule: everyone connects to everyone. It provides a simple authentication mechanism by tokens called cookie. In this article I want to show how to use remote shell for interconnection between Elixir","canonical_url":"https:\/\/railsware.com\/blog\/interconnecting-elixir-nodes\/","robots":"max-snippet:-1, max-image-preview:large, max-video-preview:-1","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/railsware.com\/blog\/interconnecting-elixir-nodes\/#article","name":"Interconnecting Elixir nodes | Railsware Blog","headline":"Interconnecting Elixir nodes","author":{"@id":"https:\/\/railsware.com\/blog\/author\/olexander-paladiy\/#author"},"publisher":{"@id":"https:\/\/railsware.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2017\/12\/Interconnecting-Elixir-nodes.png","width":360,"height":360,"caption":"Interconnecting Elixir nodes"},"datePublished":"2014-03-26T12:10:14+03:00","dateModified":"2020-12-28T19:25:22+03:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/railsware.com\/blog\/interconnecting-elixir-nodes\/#webpage"},"isPartOf":{"@id":"https:\/\/railsware.com\/blog\/interconnecting-elixir-nodes\/#webpage"},"articleSection":"Engineering"},{"@type":"BreadcrumbList","@id":"https:\/\/railsware.com\/blog\/interconnecting-elixir-nodes\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/railsware.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/railsware.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/railsware.com\/blog\/category\/development\/#listItem","name":"Engineering"}},{"@type":"ListItem","@id":"https:\/\/railsware.com\/blog\/category\/development\/#listItem","position":2,"name":"Engineering","item":"https:\/\/railsware.com\/blog\/category\/development\/","nextItem":{"@type":"ListItem","@id":"https:\/\/railsware.com\/blog\/interconnecting-elixir-nodes\/#listItem","name":"Interconnecting Elixir nodes"},"previousItem":{"@type":"ListItem","@id":"https:\/\/railsware.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/railsware.com\/blog\/interconnecting-elixir-nodes\/#listItem","position":3,"name":"Interconnecting Elixir nodes","previousItem":{"@type":"ListItem","@id":"https:\/\/railsware.com\/blog\/category\/development\/#listItem","name":"Engineering"}}]},{"@type":"Organization","@id":"https:\/\/railsware.com\/blog\/#organization","description":"Blog on Engineering, Product Management, Transparency, Culture and many more...","url":"https:\/\/railsware.com\/blog\/","logo":{"@type":"ImageObject","url":"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2020\/11\/Logo-circle.png","@id":"https:\/\/railsware.com\/blog\/interconnecting-elixir-nodes\/#organizationLogo","width":3137,"height":1054,"caption":"Railsware logo"},"image":{"@id":"https:\/\/railsware.com\/blog\/interconnecting-elixir-nodes\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/railsware.com\/blog\/author\/olexander-paladiy\/#author","url":"https:\/\/railsware.com\/blog\/author\/olexander-paladiy\/","name":"Olexander Paladiy","image":{"@type":"ImageObject","@id":"https:\/\/railsware.com\/blog\/interconnecting-elixir-nodes\/#authorImage","url":"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2021\/06\/olexander-paladiy-96x96.jpg","width":96,"height":96,"caption":"Olexander Paladiy"}},{"@type":"WebPage","@id":"https:\/\/railsware.com\/blog\/interconnecting-elixir-nodes\/#webpage","url":"https:\/\/railsware.com\/blog\/interconnecting-elixir-nodes\/","name":"Interconnecting Elixir nodes | Railsware Blog","description":"Elixir is a functional language built on top of Erlang VM. Therefore it uses Erlang mechanism for communication with nodes. Erlang has one simple rule: everyone connects to everyone. It provides a simple authentication mechanism by tokens called cookie. In this article I want to show how to use remote shell for interconnection between Elixir","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/railsware.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/railsware.com\/blog\/interconnecting-elixir-nodes\/#breadcrumblist"},"author":{"@id":"https:\/\/railsware.com\/blog\/author\/olexander-paladiy\/#author"},"creator":{"@id":"https:\/\/railsware.com\/blog\/author\/olexander-paladiy\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2017\/12\/Interconnecting-Elixir-nodes.png","@id":"https:\/\/railsware.com\/blog\/interconnecting-elixir-nodes\/#mainImage","width":360,"height":360,"caption":"Interconnecting Elixir nodes"},"primaryImageOfPage":{"@id":"https:\/\/railsware.com\/blog\/interconnecting-elixir-nodes\/#mainImage"},"datePublished":"2014-03-26T12:10:14+03:00","dateModified":"2020-12-28T19:25:22+03:00"},{"@type":"WebSite","@id":"https:\/\/railsware.com\/blog\/#website","url":"https:\/\/railsware.com\/blog\/","description":"Blog on Engineering, Product Management, Transparency, Culture and many more...","inLanguage":"en-US","publisher":{"@id":"https:\/\/railsware.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"| Blog on Engineering, Product Management, Transparency, Culture and many more...","og:type":"article","og:title":"Interconnecting Elixir nodes | Railsware Blog","og:description":"Elixir is a functional language built on top of Erlang VM. Therefore it uses Erlang mechanism for communication with nodes. Erlang has one simple rule: everyone connects to everyone. It provides a simple authentication mechanism by tokens called cookie. In this article I want to show how to use remote shell for interconnection between Elixir","og:url":"https:\/\/railsware.com\/blog\/interconnecting-elixir-nodes\/","og:image":"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2017\/12\/Interconnecting-Elixir-nodes.png","og:image:secure_url":"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2017\/12\/Interconnecting-Elixir-nodes.png","og:image:width":360,"og:image:height":360,"article:published_time":"2014-03-26T09:10:14+00:00","article:modified_time":"2020-12-28T16:25:22+00:00"},"aioseo_meta_data":{"post_id":"6596","title":"Interconnecting Elixir nodes | Railsware Blog","description":"","keywords":"","keyphrases":null,"primary_term":null,"canonical_url":"","og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-01-04 12:44:29","updated":"2025-09-26 11:20:39","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/railsware.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/railsware.com\/blog\/category\/development\/\" title=\"Engineering\">Engineering<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tInterconnecting Elixir nodes\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/railsware.com\/blog"},{"label":"Engineering","link":"https:\/\/railsware.com\/blog\/category\/development\/"},{"label":"Interconnecting Elixir nodes","link":"https:\/\/railsware.com\/blog\/interconnecting-elixir-nodes\/"}],"categories_data":[{"name":"Engineering","link":"https:\/\/railsware.com\/blog?category=development"}],"post_thumbnails":"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2017\/12\/Interconnecting-Elixir-nodes.png","article_background":"","amp_enabled":true,"_links":{"self":[{"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/posts\/6596","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/users\/44"}],"replies":[{"embeddable":true,"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/comments?post=6596"}],"version-history":[{"count":54,"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/posts\/6596\/revisions"}],"predecessor-version":[{"id":13335,"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/posts\/6596\/revisions\/13335"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/media\/9458"}],"wp:attachment":[{"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/media?parent=6596"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/categories?post=6596"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/tags?post=6596"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/coauthors?post=6596"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}