Virtualization using LXC: Difference between revisions

From The Opensource Knowledgebase
Jump to navigation Jump to search
mNo edit summary
 
(3 intermediate revisions by the same user not shown)
Line 56: Line 56:
=Useful commands=
=Useful commands=
==Container status modification==
==Container status modification==
<syntaxhighlight lang="bash">
<pre>
sudo lxc-start -n apache
sudo lxc-start -n apache
sudo lxc-stop -n apache  
sudo lxc-stop -n apache  
sudo lxc-destroy -n apache
sudo lxc-destroy -n apache
sudo lxc-ls --fancy
sudo lxc-ls --fancy
</syntaxhighlight>
</pre>
==Logging into the container==
==Logging into the container==
* <code> sudo lxc-start -n apache </code> This will start the container
* <code> sudo lxc-start -n apache </code> This will start the container
Line 71: Line 71:
: <code> usermod -aG sudo kedar </code>
: <code> usermod -aG sudo kedar </code>
*Install necessary software like openssh server so that you can ssh into the container
*Install necessary software like openssh server so that you can ssh into the container
<syntaxhighlight lang="bash">
<pre>
apt install openssh-server
apt install openssh-server
systemctl status sshd
systemctl status sshd
</syntaxhighlight>
</pre>
=LXC containes on network=
=LXC containers on network=
*By default lxc containers have a private IP and are not accessible to the outside network. The containers are accessible only through the host, however the containers can communicate with each other.
*By default lxc containers have a private IP and are not accessible to the outside network. The containers are accessible only through the host, however the containers can communicate with each other.
*To make the containers available on the network, we have to bridge the network. Add the below content as follows
*To make the containers available on the network, we have to bridge the network. Add the below content as follows
<syntaxhighlight lang="bash">
<pre>
sudo nano /etc/netplan/50-cloud-init.yaml
sudo nano /etc/netplan/50-cloud-init.yaml
</syntaxhighlight>
</pre>
* You must make necessary changes at your end
* You must make necessary changes at your end
<syntaxhighlight lang="bash">
<pre>
network:
network:
   version: 2
   version: 2
Line 104: Line 104:
       dhcp4: no
       dhcp4: no
       dhcp6: no
       dhcp6: no
</syntaxhighlight>
</pre>
*Save & exit
*Save & exit
*Restart netplan
*Restart netplan
<syntaxhighlight lang="bash">
<pre>
sudo netplan restart
sudo netplan restart
</syntaxhighlight>
</pre>
* Change the interface in /etc/default/lxc-net
* Change the interface in /etc/default/lxc-net
<syntaxhighlight lang="bash">
<pre>
.
.
.
.
Line 123: Line 123:
.
.
.
.
</syntaxhighlight>
</pre>
* Restart the lxc-net service
* Restart the lxc-net service
<syntaxhighlight lang="bash">
<pre>
sudo systemctl restart lxc-net
sudo systemctl restart lxc-net
</syntaxhighlight>
</pre>
=Specific IP Address to containers=
*By default containers get IP from dhcp. You can allocate specific IP addresses of your choice to a container by creating a file in lxc folder and adding hosts with corresponding ipaddress of your choice.
<pre>
sudo nano /etc/lxc/dhcp.conf
</pre>
*Add the hosts in the dhcp.conf
<pre>
dhcp-host=webserver,17.16.149.144
dhcp-host=db1,172.16.149.150
dhcp-host=db2,172.16.149.151
dhcp-host=haproxy,172.16.149.153
</pre>
*Mention the name of the file in /etc/default/lxc-net
<pre>
.
.
USE_LXC_BRIDGE="true"
LXC_DHCP_CONFILE=/etc/lxc/dhcp.conf
LXC_BRIDGE="br0"
</pre>
*Restrt lxc-net
<pre>
sudo systemctl restart lxc-net
</pre>
*Ensure the existing containers are re started for the new ipaddress to be reflected in the containers
*Everytime a change happens in dhcp.conf file, restart lxc-net service


=Conclusion=
=Conclusion=

Latest revision as of 05:54, 9 June 2020

LXC Host Details
hostname: infrabase1
Network: 172.16.149.128/25
IP Address : 172.16.149.176
Subnet Mask: 255.255.255.128
Gateway: 172.16.176.129
DNS: 8.8.8.8

Server OS: Ubuntu 18.04
Edition: LTS, server 
sudo user: kedar

FTP Client: Filezilla
ssh client: terminal, reminna
Text editors: gedit, sublime-text

User PC Details
PC type: Desktop
OS: Ubuntu Desktop
IP Address: 172.16.162.65
sudo user:kedar 

Introduction

LXC (Linux Containers) is an operating system level virtualization method for running several isolated Linux systems (containers) on a host running a linux operating system. The containers use the kernel of the host operating system and hence lxc does not have to virtualize the entire hardware of the host. Containers are relatively low on resource requirement and a singe host has the ability to run a very dense container environment, running several containers as opposed to a conventional KVM based virtualization. More information is available on here.

Preparing lxc Host

  • ssh from local machine to the lxc host
ssh kedar@172.16.149.176
  • Ensure infrabase1 (host server) is updated with latest patches and updates
sudo apt update && sudo apt upgrade -y
  • Remove unwanted software
sudo apt autoremove
  • Restart the host server
sudo init 6

Installing lxc

  • Install lxc using the ubuntu repositories
sudo apt install lxc

Creating Containers

  • Create a container called as apache. This container will be used as a webserver and apache will be installed as a webserver. You can name the container as you like.
sudo lxc-create -t download -n apache -- -d ubuntu -r bionic -a amd64

Useful commands

Container status modification

sudo lxc-start -n apache
sudo lxc-stop -n apache 
sudo lxc-destroy -n apache
sudo lxc-ls --fancy

Logging into the container

  • sudo lxc-start -n apache This will start the container
  • sudo lxc-attach -n apache This will log you in the container as root
  • Important to note that only root user is enabled in the container. You will have to create a user if you like
  • Creating a user while logged into the container. Run the below commands as root in the container
adduser kedar It will ask you many questions, Generally keep the default
  • Add the user in sudoer group
usermod -aG sudo kedar
  • Install necessary software like openssh server so that you can ssh into the container
apt install openssh-server
systemctl status sshd

LXC containers on network

  • By default lxc containers have a private IP and are not accessible to the outside network. The containers are accessible only through the host, however the containers can communicate with each other.
  • To make the containers available on the network, we have to bridge the network. Add the below content as follows
sudo nano /etc/netplan/50-cloud-init.yaml
  • You must make necessary changes at your end
network:
  version: 2
  renderer: networkd

  ethernets:
    enp4s0:
      dhcp4: false
      dhcp6: false
  bridges:
    br0:
      interfaces: [enp4s0]
      addresses: [172.16.149.176/25]
      gateway4: 172.16.176.129
      mtu: 1500
      nameservers:
        addresses: [8.8.8.8]
      parameters:
        stp: true
        forward-delay: 4
      dhcp4: no
      dhcp6: no
  • Save & exit
  • Restart netplan
sudo netplan restart
  • Change the interface in /etc/default/lxc-net
.
.
.
USE_LXC_BRIDGE="true"
.
.
.
LXC_BRIDGE="br0"
.
.
.
  • Restart the lxc-net service
sudo systemctl restart lxc-net

Specific IP Address to containers

  • By default containers get IP from dhcp. You can allocate specific IP addresses of your choice to a container by creating a file in lxc folder and adding hosts with corresponding ipaddress of your choice.
sudo nano /etc/lxc/dhcp.conf
  • Add the hosts in the dhcp.conf
dhcp-host=webserver,17.16.149.144
dhcp-host=db1,172.16.149.150
dhcp-host=db2,172.16.149.151
dhcp-host=haproxy,172.16.149.153
  • Mention the name of the file in /etc/default/lxc-net
.
.
USE_LXC_BRIDGE="true"
LXC_DHCP_CONFILE=/etc/lxc/dhcp.conf
LXC_BRIDGE="br0"
  • Restrt lxc-net
sudo systemctl restart lxc-net
  • Ensure the existing containers are re started for the new ipaddress to be reflected in the containers
  • Everytime a change happens in dhcp.conf file, restart lxc-net service

Conclusion

  • Lxc is a great way to understand containers and should be a starting point for users who are interested in container based virtualization
  • There are several advantages of using Lxc but it is by design and default that the containers are not accessible from outside the host. To enable that there are two options.
    • Create a network bride
    • Using iptables forward ports to the containers
  • Explore Lxc and have fun !

Experimental

  • For those who do not want to use terminal for creating and managing containers, there is a web panel that allows you manage containers, networks through the browser.
  • You can check it out [here]