<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>MultiChain Developer Q&amp;A - Recent questions tagged vagrant</title>
<link>https://www.multichain.com/qa/tag/vagrant</link>
<description>Powered by Question2Answer</description>
<item>
<title>Vagrant (ssh) + Multichain Explorer</title>
<link>https://www.multichain.com/qa/4556/vagrant-ssh-multichain-explorer</link>
<description>I'm trying to duplicate my local working setup (Host + VirtualBox VMs + multichain + explorer) on a Vagrant setup just to showcase my work using the Multichain Explorer.&lt;br /&gt;
&lt;br /&gt;
I Vagrant ssh into my VM Nodes and setup a testchain and followed every other instructions on the Explorer, just like I did with my local setup. I used bridged networks in the network setup in my vagrant setup, this is so it mimics my local VM setup.&lt;br /&gt;
&lt;br /&gt;
This is a clean run and I get the below results. Please help, I don't know what I'm doing wrong and I've tried so many other methods.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
$ sudo python -m Mce.abe --config testchain1.conf --commit -bytes 100000 --no-serve&lt;br /&gt;
&lt;br /&gt;
ddl_implicit_commit=true&lt;br /&gt;
create_table_epilogue=''&lt;br /&gt;
max_varchar=4294967295&lt;br /&gt;
clob_type=CLOB&lt;br /&gt;
binary_type=buffer&lt;br /&gt;
int_type=str&lt;br /&gt;
sequence_type=update&lt;br /&gt;
limit_style=native&lt;br /&gt;
[(u'foobarbaz', u'bazfoobar')]&lt;br /&gt;
concat_style=ansi&lt;br /&gt;
Assigned chain_id 1 to MultiChain testchain1&lt;br /&gt;
Failed to catch up {'blkfile_offset': 0, 'blkfile_number': 1, 'chain_id': 1, 'loader': u'default', 'conf': None, 'dirname': u'/home/vagrant/.multichain/testchain1', 'id': 1}&lt;br /&gt;
Traceback (most recent call last):&lt;br /&gt;
&amp;nbsp;&amp;nbsp;File &amp;quot;Mce/DataStore.py&amp;quot;, line 2892, in catch_up&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if not store.catch_up_rpc(dircfg):&lt;br /&gt;
&amp;nbsp;&amp;nbsp;File &amp;quot;Mce/DataStore.py&amp;quot;, line 3117, in catch_up_rpc&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;tx = get_tx(rpc_tx_hash)&lt;br /&gt;
&amp;nbsp;&amp;nbsp;File &amp;quot;Mce/DataStore.py&amp;quot;, line 2974, in get_tx&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;rpc_tx_hex = rpc(&amp;quot;getrawtransaction&amp;quot;, rpc_tx_hash)&lt;br /&gt;
&amp;nbsp;&amp;nbsp;File &amp;quot;Mce/DataStore.py&amp;quot;, line 2949, in rpc&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ret = util.jsonrpc(chain_name, url, func, *params)&lt;br /&gt;
&amp;nbsp;&amp;nbsp;File &amp;quot;Mce/util.py&amp;quot;, line 246, in jsonrpc&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;raise JsonrpcException(resp['error'], method, params)&lt;br /&gt;
JsonrpcException: getrawtransaction: No information available about transaction (code -710)&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
And here is my vagrant file&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
# -*- mode: ruby -*-&lt;br /&gt;
# vi: set ft=ruby :&lt;br /&gt;
&lt;br /&gt;
# All Vagrant configuration is done below. The &amp;quot;2&amp;quot; in Vagrant.configure&lt;br /&gt;
# configures the configuration version (we support older styles for&lt;br /&gt;
# backwards compatibility). Please don't change it unless you know what&lt;br /&gt;
# you're doing.&lt;br /&gt;
Vagrant.configure(&amp;quot;2&amp;quot;) do |config|&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# The most common configuration options are documented and commented below.&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# For a complete reference, please see the online documentation at&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# &lt;a href=&quot;https://docs.vagrantup.com&quot; rel=&quot;nofollow&quot;&gt;https://docs.vagrantup.com&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# Every Vagrant development environment requires a box. You can search for&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# boxes at &lt;a href=&quot;https://atlas.hashicorp.com/search&quot; rel=&quot;nofollow&quot;&gt;https://atlas.hashicorp.com/search&lt;/a&gt;.&lt;br /&gt;
&amp;nbsp;&amp;nbsp;config.vm.box = &amp;quot;ubuntu/trusty64&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# Disable automatic box update checking. If you disable this, then&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# boxes will only be checked for updates when the user runs&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# `vagrant box outdated`. This is not recommended.&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# config.vm.box_check_update = false&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# Create a forwarded port mapping which allows access to a specific port&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# within the machine from a port on the host machine. In the example below,&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# accessing &amp;quot;localhost:8080&amp;quot; will access port 80 on the guest machine.&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# config.vm.network &amp;quot;forwarded_port&amp;quot;, guest: 80, host: 8080&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# Create a private network, which allows host-only access to the machine&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# using a specific IP.&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# config.vm.network &amp;quot;private_network&amp;quot;, ip: &amp;quot;192.168.33.10&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# Create a public network, which generally matched to bridged network.&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# Bridged networks make the machine appear as another physical device on&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# your network.&lt;br /&gt;
&amp;nbsp;&amp;nbsp;config.vm.network &amp;quot;public_network&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# Share an additional folder to the guest VM. The first argument is&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# the path on the host to the actual folder. The second argument is&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# the path on the guest to mount the folder. And the optional third&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# argument is a set of non-required options.&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# config.vm.synced_folder &amp;quot;../data&amp;quot;, &amp;quot;/vagrant_data&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# Provider-specific configuration so you can fine-tune various&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# backing providers for Vagrant. These expose provider-specific options.&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# Example for VirtualBox:&lt;br /&gt;
&amp;nbsp;&amp;nbsp;#&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# config.vm.provider &amp;quot;virtualbox&amp;quot; do |vb|&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# &amp;nbsp;&amp;nbsp;# Display the VirtualBox GUI when booting the machine&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# &amp;nbsp;&amp;nbsp;vb.gui = true&lt;br /&gt;
&amp;nbsp;&amp;nbsp;#&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# &amp;nbsp;&amp;nbsp;# Customize the amount of memory on the VM:&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# &amp;nbsp;&amp;nbsp;vb.memory = &amp;quot;1024&amp;quot;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# end&lt;br /&gt;
&amp;nbsp;&amp;nbsp;#&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# View the documentation for the provider you are using for more&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# information on available options.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# Define a Vagrant Push strategy for pushing to Atlas. Other push strategies&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# such as FTP and Heroku are also available. See the documentation at&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# &lt;a href=&quot;https://docs.vagrantup.com/v2/push/atlas.html&quot; rel=&quot;nofollow&quot;&gt;https://docs.vagrantup.com/v2/push/atlas.html&lt;/a&gt; for more information.&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# config.push.define &amp;quot;atlas&amp;quot; do |push|&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# &amp;nbsp;&amp;nbsp;push.app = &amp;quot;YOUR_ATLAS_USERNAME/YOUR_APPLICATION_NAME&amp;quot;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# end&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# Enable provisioning with a shell script. Additional provisioners such as&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# documentation for more information about their specific syntax and use.&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# config.vm.provision &amp;quot;shell&amp;quot;, inline: &amp;lt;&amp;lt;-SHELL&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# &amp;nbsp;&amp;nbsp;apt-get update&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# &amp;nbsp;&amp;nbsp;apt-get install -y apache2&lt;br /&gt;
&amp;nbsp;&amp;nbsp;# SHELL&lt;br /&gt;
end</description>
<guid isPermaLink="true">https://www.multichain.com/qa/4556/vagrant-ssh-multichain-explorer</guid>
<pubDate>Tue, 28 Mar 2017 19:51:14 +0000</pubDate>
</item>
<item>
<title>Error: Couldn't connect to the seed node</title>
<link>https://www.multichain.com/qa/3052/error-couldnt-connect-to-the-seed-node</link>
<description>&lt;p&gt;Hi all,&lt;/p&gt;&lt;p&gt;Sorry to bother you with a question that has been asked 781235 times already: the impossibility to connect to seed node (&lt;em&gt;Error: Couldn't connect to the seed node 10.0.2.15 on port 6819 - please check multichaind is running at that address and that your firewall settings allow incoming connections.&lt;/em&gt;). I've seen multiple threads but I couldn't solve my problem after countless hours browsing the web, that's why I'm here. We need to use this for a class and my fellow students couldn't connect either.&amp;nbsp;&lt;/p&gt;&lt;p&gt;I had one idea for the origin of the bug: the ip of the seed node is not the same as what we set in the Vagrantfile.&lt;/p&gt;&lt;p&gt;I&amp;nbsp;installed multichain on my computer (Ubuntu 16.04 LTS) and would like to have 3 VMs talking to each other. One VM would create a blockchain and the other two would interact with it.&lt;/p&gt;&lt;p&gt;The Vagrantfile I used is the following (provided by my professor):&lt;/p&gt;&lt;pre&gt;# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.require_version &quot;&amp;gt;= 1.6.2&quot;

Vagrant.configure(2) do |config|

  config.vm.box = &quot;ubuntu/trusty64&quot;
  # config.vm.box = &quot;&lt;a href=&quot;https://cloud-images.ubuntu.com/vagrant/wily/current/wily-server-cloudimg-amd64-vagrant-disk1.box&quot;&quot; rel=&quot;nofollow&quot;&gt;https://cloud-images.ubuntu.com/vagrant/wily/current/wily-server-cloudimg-amd64-vagrant-disk1.box&quot;&lt;/a&gt;

  # config.vm.hostname = &quot;Multichain&quot;
  # config.vm.network :private_network, :ip =&amp;gt; '10.4.4.4'
  number_of_nodes = 3
  number_of_nodes.times do |i|
    config.vm.define &quot;multichain-node-#{i}&quot; do |node|
      node.vm.hostname = &quot;multichain-node-#{i}&quot;
      node.vm.network :private_network, :ip =&amp;gt; &quot;10.4.4.#{i}&quot;
      node.vm.provider :virtualbox do |vb|
        #vb.gui = true
        vb.customize [&quot;modifyvm&quot;, :id, &quot;--memory&quot;, &quot;512&quot;]
        vb.customize [&quot;modifyvm&quot;, :id, &quot;--natdnshostresolver1&quot;, &quot;off&quot;]
        vb.customize [&quot;modifyvm&quot;, :id, &quot;--natdnsproxy1&quot;, &quot;off&quot;]
        vb.name = &quot;MultiChain-#{i}&quot;
      end
    end
    i += 1
  end

  config.ssh.forward_agent = true
  config.ssh.forward_x11 = true

  config.vm.provision &quot;shell&quot;, :inline =&amp;gt; &quot;wget &lt;a href=&quot;http://www.multichain.com/download/multichain-1.0-alpha-16.tar.gz&quot;&quot; rel=&quot;nofollow&quot;&gt;http://www.multichain.com/download/multichain-1.0-alpha-16.tar.gz&quot;&lt;/a&gt;
  config.vm.provision &quot;shell&quot;, :inline =&amp;gt; &quot;tar -xvzf multichain-1.0-alpha-16.tar.gz&quot;
  config.vm.provision &quot;shell&quot;, :inline =&amp;gt; &quot;cd multichain-1.0-alpha-16 &amp;amp;&amp;amp; mv multichaind multichain-cli multichain-util /usr/local/bin&quot;

end&lt;/pre&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Then I run:&lt;/p&gt;&lt;pre&gt;&lt;strong&gt;$ vagrant up
$ vagrant ssh multichain-node-0&lt;/strong&gt;
Welcome to Ubuntu 14.04.5 LTS (GNU/Linux 3.13.0-100-generic x86_64)

 * Documentation:  &lt;a href=&quot;https://help.ubuntu.com/&quot; rel=&quot;nofollow&quot;&gt;https://help.ubuntu.com/&lt;/a&gt;

 System information disabled due to load higher than 1.0

  Get cloud support with Ubuntu Advantage Cloud Guest:
    &lt;a href=&quot;http://www.ubuntu.com/business/services/cloud&quot; rel=&quot;nofollow&quot;&gt;http://www.ubuntu.com/business/services/cloud&lt;/a&gt;

0 packages can be updated.
0 updates are security updates.

New release '16.04.1 LTS' available.
Run 'do-release-upgrade' to upgrade to it.

/usr/bin/xauth:  file /home/vagrant/.Xauthority does not exist&lt;/pre&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Following the example on &lt;a href=&quot;https://github.com/oschain/multichain/blob/master/README.md&quot; rel=&quot;nofollow&quot;&gt;https://github.com/oschain/multichain/blob/master/README.md&lt;/a&gt; , in multichain-node-0 I run:&lt;/p&gt;&lt;pre&gt;&lt;strong&gt;vagrant@multichain-node-1:~$ multichain-util create lamchain&lt;/strong&gt;
MultiChain utilities build 1.0 alpha 16 protocol 10003

Blockchain parameter set was successfully generated.
You can edit it in /home/vagrant/.multichain/lamchain/params.dat before running multichaind for the first time.

To generate blockchain please run &quot;multichaind lamchain&quot;.


&lt;strong&gt;vagrant@multichain-node-1:~$ multichaind lamchain -daemon  -debug=mchn -debug=mchnminor -debug=net&lt;/strong&gt;

MultiChain Core Daemon build 1.0 alpha 16 protocol 10003

Multichain server starting
&lt;strong&gt;vagrant@multichain-node-1:~$ Looking for genesis block...
&lt;/strong&gt;Genesis block found
New users can connect to this node using
multichaind lamchain@10.0.2.15:6819

Node started&lt;/pre&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Now I open a new tab in my terminal (Ctrl + Alt + t) and&amp;nbsp;connect to the second node using &lt;strong&gt;on my machine (terminal of my Ubuntu, not a VM)&lt;/strong&gt;:&amp;nbsp;&lt;/p&gt;&lt;pre&gt;&lt;strong&gt;$ vagrant ssh multichain-node-1
&lt;/strong&gt;Welcome to Ubuntu 14.04.5 LTS (GNU/Linux 3.13.0-100-generic x86_64)

 * Documentation:  &lt;a href=&quot;https://help.ubuntu.com/&quot; rel=&quot;nofollow&quot;&gt;https://help.ubuntu.com/&lt;/a&gt;

 System information disabled due to load higher than 1.0

  Get cloud support with Ubuntu Advantage Cloud Guest:
    &lt;a href=&quot;http://www.ubuntu.com/business/services/cloud&quot; rel=&quot;nofollow&quot;&gt;http://www.ubuntu.com/business/services/cloud&lt;/a&gt;

0 packages can be updated.
0 updates are security updates.

New release '16.04.1 LTS' available.
Run 'do-release-upgrade' to upgrade to it.

/usr/bin/xauth:  file /home/vagrant/.Xauthority does not exist
&lt;strong&gt;vagrant@multichain-node-2:~$ &lt;/strong&gt;&lt;/pre&gt;&lt;p&gt;Now, on the second node I want to connect to the blockchain, using:&lt;/p&gt;&lt;pre&gt;&lt;strong&gt;vagrant@multichain-node-2:~$ multichaind lamchain@10.0.2.15:6819 -debug=mchn -debug=mchnminor -debug=net&lt;/strong&gt;

MultiChain Core Daemon build 1.0 alpha 16 protocol 10003

Retrieving blockchain parameters from the seed node 10.0.2.15:6819 ...
&lt;span style=&quot;text-decoration: underline;&quot;&gt;&lt;strong&gt;Error: Couldn't connect to the seed node 10.0.2.15 on port 6819 - please c&lt;/strong&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style=&quot;text-decoration: underline;&quot;&gt;&lt;strong&gt;heck multichaind is running at that address and that your firewall settings&lt;/strong&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style=&quot;text-decoration: underline;&quot;&gt;&lt;strong&gt; allow incoming connections.&lt;/strong&gt;&lt;/span&gt;&lt;/pre&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;My guess is that there's a problem because it connects on node 10.0.2.15 and not 10.4.4.1 as we set in the Vagrantfile?&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;If I run ip a I get:&lt;/p&gt;&lt;pre&gt;&lt;strong&gt;vagrant@multichain-node-1:~$ ip a
&lt;/strong&gt;1: lo: &amp;lt;LOOPBACK,UP,LOWER_UP&amp;gt; mtu 65536 qdisc noqueue state UNKNOWN group default 
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: eth0: &amp;lt;BROADCAST,MULTICAST,UP,LOWER_UP&amp;gt; mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
    link/ether 08:00:27:24:94:c4 brd ff:ff:ff:ff:ff:ff
    inet 10.0.2.15/24 brd 10.0.2.255 scope global eth0
       valid_lft forever preferred_lft forever
    inet6 fe80::a00:27ff:fe24:94c4/64 scope link 
       valid_lft forever preferred_lft forever
3: eth1: &amp;lt;BROADCAST,MULTICAST,UP,LOWER_UP&amp;gt; mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
    link/ether 08:00:27:60:10:bf brd ff:ff:ff:ff:ff:ff
    inet 10.4.4.1/24 brd 10.4.4.255 scope global eth1
       valid_lft forever preferred_lft forever
    inet6 fe80::a00:27ff:fe60:10bf/64 scope link 
       valid_lft forever preferred_lft forever&lt;/pre&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;And :&lt;/p&gt;&lt;pre&gt;&lt;strong&gt;vagrant@multichain-node-2:~$ ip a
&lt;/strong&gt;1: lo: &amp;lt;LOOPBACK,UP,LOWER_UP&amp;gt; mtu 65536 qdisc noqueue state UNKNOWN group default 
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: eth0: &amp;lt;BROADCAST,MULTICAST,UP,LOWER_UP&amp;gt; mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
    link/ether 08:00:27:24:94:c4 brd ff:ff:ff:ff:ff:ff
    inet 10.0.2.15/24 brd 10.0.2.255 scope global eth0
       valid_lft forever preferred_lft forever
    inet6 fe80::a00:27ff:fe24:94c4/64 scope link 
       valid_lft forever preferred_lft forever
3: eth1: &amp;lt;BROADCAST,MULTICAST,UP,LOWER_UP&amp;gt; mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
    link/ether 08:00:27:39:f3:4e brd ff:ff:ff:ff:ff:ff
    inet 10.4.4.2/24 brd 10.4.4.255 scope global eth1
       valid_lft forever preferred_lft forever
    inet6 fe80::a00:27ff:fe39:f34e/64 scope link 
       valid_lft forever preferred_lft forever&lt;/pre&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;It is probably&amp;nbsp;useful to know also that my internet connection is under my school's firewall.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks A LOT even if you don't answer but took the time to read until here, it's still very nice of you! By helping me you might end up solving a problem for lots of students :)&lt;/p&gt;</description>
<guid isPermaLink="true">https://www.multichain.com/qa/3052/error-couldnt-connect-to-the-seed-node</guid>
<pubDate>Tue, 01 Nov 2016 08:18:33 +0000</pubDate>
</item>
<item>
<title>Trying to do getting started with 2 Vagrant boxes</title>
<link>https://www.multichain.com/qa/203/trying-to-do-getting-started-with-2-vagrant-boxes</link>
<description>So I'm using Vagrant on top of VirtualBox. VirtualBox by default sets the network eth0 to some default ip. And if I bring up 2 separate VMs both have the same ip. I admit I get a little confused with the network settings on VMs. Does anyone have any suggestions?</description>
<guid isPermaLink="true">https://www.multichain.com/qa/203/trying-to-do-getting-started-with-2-vagrant-boxes</guid>
<pubDate>Sun, 04 Oct 2015 18:46:11 +0000</pubDate>
</item>
</channel>
</rss>