Coder Social home page Coder Social logo

lcorreia / kimchi Goto Github PK

View Code? Open in Web Editor NEW

This project forked from kimchi-project/kimchi

0.0 2.0 0.0 14.18 MB

An HTML5 management interface for KVM

License: Other

Shell 4.87% Python 48.04% JavaScript 35.28% HTML 1.86% CSS 9.90% XSLT 0.05%

kimchi's Introduction

Wok (Webserver Originated from Kimchi)

Wok is a cherrypy-based web framework with HTML5 support that is extended by plugins which expose functionality through REST APIs.

Examples of such plugins are Kimchi (Virtualization Management) and Ginger (System Administration). Wok comes with a sample plugin for education purposes.

Wok runs through wokd daemon.

Build and Install

$ ./autogen.sh --system
$ make
$ sudo make install   # Optional if running from the source tree

Run

$ sudo wokd --host=0.0.0.0

If you cannot access Wok, take a look at these 2 points:

  1. Firewall: Wok uses by default the ports 8000, 8001 and 64667. To allow incoming connections:

    For system using firewalld, do:

     $ sudo firewall-cmd --add-port=8000/tcp --permanent
     $ sudo firewall-cmd --add-port=8001/tcp --permanent
     $ sudo firewall-cmd --add-port=64667/tcp --permanent
     $ sudo firewall-cmd --reload
    

    For openSUSE systems, do:

     $ sudo /sbin/SuSEfirewall2 open EXT TCP 8000
     $ sudo /sbin/SuSEfirewall2 open EXT TCP 8001
     $ sudo /sbin/SuSEfirewall2 open EXT TCP 64667
    

    For system using iptables, do:

     $ sudo iptables -A INPUT -p tcp --dport 8000 -j ACCEPT
     $ sudo iptables -A INPUT -p tcp --dport 8001 -j ACCEPT
     $ sudo iptables -A INPUT -p tcp --dport 64667 -j ACCEPT
    

    Don't forget to correctly save the rules.

  2. SELinux: Allow httpd_t context for Wok web server:

     $ sudo semanage permissive -a httpd_t
    

Participating

All patches are sent through our mailing list hosted by oVirt. More information can be found at:

https://github.com/kimchi-project/kimchi/wiki/Communications

Patches should be sent using git-send-email to [email protected].

kimchi's People

Contributors

alinefm avatar lvroyce avatar truja avatar danielhb avatar edwardbadboy avatar adamkingit avatar wenwang1989 avatar clnperez avatar yuxinhuo avatar xinding avatar cd1 avatar apporc avatar edusf avatar sstoppler avatar frediz avatar laptop006 avatar alisonjenkins avatar pradeepkumars avatar cbosdo avatar gouzongmei avatar aglitke avatar abotegaibm avatar atreyeemukhopadhyay avatar baude avatar crobinso avatar pvital avatar julbrygd avatar tuliom avatar ssdxiao avatar

Watchers

James Cloos avatar Lucio Correia avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.