How to upgrade chrooted lighttpd web server
If you are running chrooted lighttpd web server, upgrade procedure is a bit tricky. You need to upgrade webserver, as well as php and related extensions.
Following is common sequence you need to follow. I am just going to write down all steps, followed by actual Linux commands. If you need detailed instructions, please see how to install and configure lighttpd in chrooted jail.
Step # 1: Stop or shutdown lighttpd web server
# /etc/init.d/lighttpd stop
Step # 2: Backup existing chrooted directory (such as /webroot) to another partition or directory:
# mkdir /root/old.lighttpd
# tar -zcvf /root/old.lighttpd/webroot.tar.gz /webroot
Step # 3: Download latest lighttpd. Upgrade lighttpd using rpm:
# rpm -Uvh lighttpd*
Or using apt-get
# apt-get update; apt-get install lighttpd
Or using source code installation (make sure you use old ./configure syntax)
# ./configureNow upgrade PHP and php-mysql extensions using rpm or apt-get commands.
# make
# make install
# rpm php*
OR
# apt-get php4-cgi php4-mysql
Step # 4: Now upgrade chrooted lighttpd which is located at /webroot:
# cd /webroot
# rm -rf usr
# rm -rf lib
# cp /usr/bin/php4-cgi /webroot/usr/bin/
# cp /usr/bin/php4 /webroot/usr/bin/
# /bin/l2chroot /usr/bin/php4
# /bin/l2chroot /usr/bin/php4-cgi
# cp /lib/ld-linux.so.2 /webroot/lib
Copy mysql extnsion
# cp /usr/lib/php4/20060606/mysql.so /webroot/usr/lib/php4/20060606/
Repeat above procedure to copy all your php shared modules such as php-imap, php-gd, php-memcache etc.
Step # 5: Now Start lighttpd:
# /etc/init.d/lighttpd start
Step # 6:Make sure everything is working perfectly:
# tail -f /var/log/message
# netstat -tulpn
Make sure you copy other essentials file such as /usr/sbin/sendmail (or mini_sendmail) to chrooted jail.
Want to stay up to date with the latest Linux tips, news and announcements? Subscribe to our free e-mail newsletter or RSS feed to get all updates.
You can Email this page to a friend.
You may also be interested in other helpful articles:
- Lighttpd / Apache : Run Xcache in Chrooted Jail
- Ultimate Lighttpd webserver security
- Setup sendmail php mail() support for chrooted Lighttpd or Apache web server
- Using google to attack on your personal web server
- How to upgrade lighttpd tar ball (source code) installation
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!



Recent Comments
Today ~ 13 Comments
Today ~ 9 Comments
Yesterday ~ 3 Comments
Yesterday ~ 1 Comment
Yesterday ~ 2 Comments