菜鸟求助,怎么在linux下安装kangle

2024-12-27 22:17:11
推荐回答(1个)
回答1:

首先到kangle官方网站上下载最新的源代码。
前提条件:
请先确保你的系统上有g++,libz开发包,libpcre开发包,libiconv开发包(非linux版要).如你的系统为centos/rhel则运行下面命令安装这些包:
1. yum -y install wget make gcc gcc-c++ pcre-devel zlib-devel

第一步 下载源代码:
下载后我们会得到kangle-x.y.z.tar.gz(x,y,z是版本号,以下命令请替换x,y,z为具体的版本号)
以2.8.3版本为例:
第一步,wget下载相应的压缩包

第二步,解压:
1. tar xzf kangle-2.8.3.tar.gz
2. cd kangle-2.8.3

第三步,配置:这一步用来配置kangle源代码。
1. ./configure --prefix=/vhs/kangle --enable-disk-cache --enable-ipv6 --enable-ssl --enable-vh-limit

第四步 编译安装:
1. make
2. make install

第五步 启动kangle
1. /vhs/kangle/bin/kangle

第六步 进入kangle管理
通过浏览器打开
1. http://服务器ip地址:3311/

第一次进入输入 用户名admin,密码kangle
强烈建议第一次进入后修改管理后台的用户名和密码
**注意事项**
1:有时候安装make报错,可能是因为没有安装openssl
先运行一下yum -y install openssl-devel ,在去编译,在make就OK。
2:
make
Making all in src
make[1]: Entering directory `/root/kangle-2.4.1/src'
没有安装pcre开发包
3:
./configure --prefix=/usr/local/kangle
如果是centos的,请执行:
1. yum -y install pcre-devel zlib-devel
4:
这个安装在 linux 上也能跑asp+access吗
linux上不支持asp+access
5:
[root@localhost kangle-2.8.3]# ./configure --prefix=/usr/local/kangle --enable-disk-cache --enable-ipv6 --enable-ssl --enable-vh-limit
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... configure: error: newly created file is older than distributed files!
Check your system clock
[root@localhost kangle-2.8.3]# make
[root@localhost kangle-2.8.3]# make install
[root@localhost kang
这是你服务器上的时间不对。运行以下命令。
1. find .|xargs touch