NoSQL#

Just some free format stuff for a small studying / experiment with NoSQL stuff.

Resources#

Install/config#

lxc#

  • /etc/default/lxc => change subnet from 10.0.3 to 10.0.4 (10.0.3 is already in use somewhere else)
  • add static route in wireless router (10.0.4.0/8 => via 10.0.0.164)
  • adjust /etc/network/interfaces of container to:
auto eth0
#iface eth0 inet dhcp
iface eth0 inet static
        address 10.0.4.10
        netmask 255.255.255.0
        network 10.0.4.0
        broadcast 10.0.4.255
        gateway 10.0.4.1
        post-up route add default gw 10.0.4.1 dev eth0
        # dns-* options are implemented by the resolvconf package, if installed
        dns-nameservers 213.197.28.3 213.197.30.28
        dns-search computerhok.nl
  • lxc-host ubuntu1 => 10.0.4.10