Project

General

Profile

Support #826

Updated by Daniel Curtis almost 8 years ago

This is a guide on setting up LXC Web Panel to manage Linux Containers on Arch Linux. 

 h2. Prepare the Environment 

 * Make sure the system is up to date: 
 <pre> 
 sudo pacman -Syu 
 </pre> 

 h2. Install LXC Web Panel 

 * Install a couple dependencies: 
 <pre> 
 sudo pacman -S python2 python2-pip 
 </pre> 

 * Clone the LXC Web Panel repository: 
 <pre> 
 git clone https://github.com/lxc-webpanel/LXC-Web-Panel.git 
 cd LXC-Web-Panel 
 </pre> 

 * Install Flask 
 <pre> 
 sudo pip2 pip install flask==0.9 
 </pre> 

 * Run LXC Web Panel 
 <pre> 
 python2 python lwp.py 
 </pre> 

 * Connect you on http://lxcpanel.example.com:5000/ 
 #* Login with user *admin* and password *admin* 

 h2. Resources 

 * https://github.com/lxc-webpanel/LXC-Web-Panel 
 * https://lxc-webpanel.github.io/install.html

Back