Yes, it is. You may use Karesansui for business or personal use for free.
Karesansui is mainly under GPL and LGPL. See here for details.
Karesansui is aimed to support virtual servers so it does not support full-virtualization now. We are planning to support it in future. While it is not supported by Karesansui, you may setup full-virtualized guests using command line.
Yes, it only supports Xen now. But we are planning to support KVM in near future.
We prepared and install pack so you should be able to install Karesansui easily. Please follow our Tutorial.
We are working hard. Please take a look at our Karesansui's full ajax web control panel.
Yes! Thank you! Take the Get Karesansui Badge if you like it.
No. Nothing. It's GPL/LGPL so there's no problem.
No. Karesansui uses the database to keep information for its user interface. Guests don't stop if when the database stops, but you will have problems to access Karesansui control panel.
We use TightVNC Java applet for guest console. So you need Java installed for your browser.
> ping {Karesansui server IP address or name}
bq. Next, Check if the VNC port is open on your Karesansui host.# netstat -nalt
If all above are OK, then try to connect the guest from the client, using standard VNC viewer applications.
Select 'Display' from guest device tab, and set 'VNC Keymap'. Choose appropriate keymap.
Go and ask your question in the Karesansui Forum . Somebody may answer you.
log.conf内の "[handler_*"カテゴリにある "args" を変更します。以下に変更例を記載します。
ログファイルサイズ 5M を 10Mにする場合
args=('/var/log/karesansui/application.log', 'a', (5 *1024 *1024), 5)
↓↓↓↓↓
args=('/var/log/karesansui/application.log', 'a', (10 *1024 *1024), 5)
ログファイル名をapplication.log を server.log にする場合
args=('/var/log/karesansui/application.log', 'a', (5 *1024 *1024), 5)
↓↓↓↓↓
args=('/var/log/karesansui/server.log', 'a', (5 *1024 *1024), 5)
ログローテートを5から10にする場合
args=('/var/log/karesansui/application.log', 'a', (5 *1024 *1024), 5)
↓↓↓↓↓
args=('/var/log/karesansui/application.log', 'a', (5 *1024 *1024), 10)
ログレベルによってログの出力を制限している可能性があります。 "[logger_*"カテゴリのlevelを確認してください。
ログレベル一覧(※上は下を包括します。) - DEBUG : 全て出力 - INFO : 一般情報のみ出力 - WARNING : 警告のみ出力(運用時の推奨設定) - ERROR : エラーのみ出力 - CRITICAL : 深刻なエラーのみ出力 - EXCEPTION : システム的なエラーのみ出力 補足 : ログ設定の変更時はウェブサーバーの再起動が必要です。
Python loggingで利用できるすべての形式に対応していますので詳しくはそちらを参照ください。
log.conf内の "[handler_*"カテゴリにある "args" に定義されています。
Karesansuiのログは複数のファイルで構成されています。
Karesansui全体のログ : /var/log/karesansui/application.log Karesansuiで発生したエラーのプログラムトレースログ : /var/log/karesansui/error.log Karesansuiが発行したSQL関連のログ : /var/log/karesansui/sql.log