源码编译安装
- 获取Lighttpd源码。
- 进入“home”目录。
1
cd /home/
- 解压Lighttpd安装包。
1
tar -zxvf lighttpd-1.4.53.tar.gz
- 进入“lighttpd-1.4.53”目录。
1
cd /home/lighttpd-1.4.53/
- 配置Lighttpd。
1
./configure --prefix=/usr/local/lighttpd --with-fam
- --prefix=PATH:指定Lighttpd的安装目录。
- --with-fam:fam用于减少stat()函数调用次数。
- 编译并安装Lighttpd。
1
make -j60 && make install
- 在安装路径下创建文件夹。
1
cd /usr/local/lighttpd/ && mkdir log webpages cache config
Lighttpd安装后的安装路径下只有三个文件夹 lib,sbin和share,其他文件需要自己拷贝和创建。
- 将Lighttpd配置文件lighttpd.conf、modules.conf和conf.d拷贝到安装路径“/usr/local/lighttpd/config”下。
1
cp /home/lighttpd-1.4.53/doc/config/lighttpd.conf /usr/local/lighttpd/config
1
cp /home/lighttpd-1.4.53/doc/config/modules.conf /usr/local/lighttpd/config
1
cp -r /home/lighttpd-1.4.53/doc/config/conf.d /usr/local/lighttpd/config
- 查看安装目录。
1
ls /usr/local/lighttpd
父主题: 安装