English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Detailed tutorial on compiling and installing Kangle web server under Linux

Firstly, download the source code of kangle web server.

Download kangle Linux version:

kangle source code (tar.gz package, non-Windows version installation)

Please make sure that you have g++,libz development package, libpcre development package, libiconv development package. If your system is CentOS/For RHEL, run the following command to install these packages:

yum -y install wget make automake gcc gcc-c++ pcre-devel zlib-devel sqlite-devel openssl-devel

Step 1: Download the source code of kangle Linux version:

After downloading, we will get kangle-3.4.8.tar.gz

wget http://download.kangleweb.com/zcore.php?os=src

The second step, decompress the kangle package:

tar xzf kangle-3.4.8-jb51.tar.gz
cd kangle-3.4.8-jb51

Step 3, configure kangle:

This step is used to configure the kangle source code.

./configure --prefix=/vhs/kangle --enable-disk-cache --enable-ipv6 --enable-ssl --enable-vh-limit

Step 4 Compile and install kangle:

make
make install

Step 5 Start kangle

/vhs/kangle/bin/kangle

Step 6 Enter kangle management

Open through the browser

http://Server IP address:3311/

For the first time, enter Username admin, password kangle

It is strongly recommended to change the username and password of the management background for the first time

kangle parameter description:
The following parameters are added in:

/vhs/kangle/bin/kangle behind

  [-h --help] You can see detailed parameter descriptions
  [-d level] Debug run the program
  [-r --reload] Reload all configuration files
  [--revh] Reload etc/vh.xml file (etc/vh.xml)
  [--reboot] Smoothly restart the program (the existing program will ensure that the service is completed for the customer), usually used for upgrades
  [-z [disk_dir]] Create hard disk cache directory
  [-v --version] View program version
  [-a apache_config_file] Converted Apache configuration
  [-q] Close program
  [-n] Start program not in daemon

Installing kangle web server on Linux is very simple and suitable for beginners to learn.

You May Also Like