歡迎您光臨本站 註冊首頁

lighttpd的安裝配置。。。

←手機掃碼閱讀     火星人 @ 2014-03-03 , reply:0

lighttpd的安裝配置。。。

lighttpd的安裝配置。。。







首先安裝lighttpd之前先安裝pcre包
確認libtool是否已經安裝,如果沒有安裝的話,則先安裝libtool
yum -y install libtool
分別執行以下三條命令:autoreconf --force --install
libtoolize --automake --force
automake --force --add-missing

./configure --prefix=/usr/local/lighttpd
make && make install

yum -y install readline-devel
yum -y install ncurses-devel這兩個包也要安裝
configure: error: zlib-headers and/or libs where not found, install them or build with –without-zlib
提示以上錯誤的時候要安裝zlib-devel
但是我安裝以後不行,所以直接yum -y install zlib-*
同上
configure: error: bzip2-headers and/or libs where not found, install them or build with –without-bzip2
出現這個錯誤就直接yum -y install bzip2-*
然後在編譯lighttpd就可以通過了
成功以後會顯示enabled:
  mod_access
  mod_accesslog
  mod_alias
  mod_auth
  mod_cgi
  mod_compress
  mod_dirlisting
  mod_evhost
  mod_expire
  mod_extforward
  mod_fastcgi
  mod_flv_streaming
  mod_indexfile
  mod_proxy
  mod_redirect
  mod_rewrite
  mod_rrdtool
  mod_scgi
  mod_secdownload
  mod_setenv
  mod_simple_vhost
  mod_ssi
  mod_staticfile
  mod_status
  mod_trigger_b4_dl
  mod_userdir
  mod_usertrack
  mod_webdav
disabled:
  mod_cml
  mod_magnet
  mod_mysql_vhost
Features:
enabled:
  auth-crypt
  compress-bzip2
  compress-deflate
  compress-gzip
  large-files
  network-ipv6
  regex-conditionals
disabled:
  auth-ldap
  network-openssl
  stat-cache-fam
  storage-gdbm
  storage-memcache
  webdav-locks
  webdav-properties
然後執行:
make && make install
cp doc/config/lighttpd.conf /usr/local/lighttpd/有的配置文件在doc下,有的就在doc/config下
最後就是根據你自己的設置來更改配置文件了!cd /etc/lighttpd/conf.d

touch access_log.conf

touch debug.conf

touch dirlisting.conf

touch mime.conf

mkdir -p /srv/www/htdocs

mkdir -p /var/log/lighttpd/

cd /var/log/lighttpd/

touch error.log

chown -R lighttpd.lighttpd /var/log/lighttpd

chown -R lighttpd.lighttpd /etc/lighttpd

/usr/local/lighttpd/sbin/lighttpd -f /etc/lighttpd/lighttpd.conf

lsof -i:80
COMMAND   PID     USER   FD   TYPE DEVICE SIZE NODE NAME
lighttpd 2352 lighttpd    4u  IPv4 125986       TCP *:http (LISTEN)
# curl -i http://192.168.1.252/
HTTP/1.1 200 OK
Content-Type: application/octet-stream
Accept-Ranges: bytes
Content-Length: 18
Date: Fri, 25 Mar 2011 17:55:36 GMT
Server: lighttpd/1.4.27

[火星人 ] lighttpd的安裝配置。。。已經有863次圍觀

http://coctec.com/docs/service/show-post-1636.html