Reputation: 3064
I never used CentOS, I only used Ubuntu, and I'm really new in web server matters. I couldn't find any easy way to install Lighttpd in CentOS 6.0. Could anyone please instruct me how to install Lighttpd in CentOS 6.0? Waiting for help.
Upvotes: 2
Views: 8538
Reputation: 6896
Run the following to add the proper repo and install it.
wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el6.rf.i686.rpm
rpm -Uhv rpmforge-release-0.5.3-1.el6.rf.i686.rpm
yum install lighttpd
Or for 64bit
wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm
rpm -Uhv rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm
yum install lighttpd
Upvotes: 2
Reputation: 1775
This guide is very easy and just works: http://www.howtoforge.com/installing-lighttpd-with-php5-and-mysql-support-on-centos-6.0
Upvotes: 0
Reputation: 3884
sudo yum list available 'lighttpd*'
this should tell you which lighttpd package are available for your arch and you can then do
yum install package.
Upvotes: 0