CentOS5.2 Apache搭建系统开发环境

对大家推荐很好使用的CentOS5.2 Apache系统之前,像让大家对CentOS5.2 Apache系统有所了解,然后对CentOS5.2 Apache系统全面讲解介绍,CentOS Linux的特点和版本CentOS社区的Linux发行版本被称为CentOS Linux,由于使用了由RHEL的源代码重新编译生成新的发行版本,CentOS Linux具有与RHEL产品非常好的兼容性,并且与生俱来地拥有RHEL的诸多优秀特性。希望对大家有用。CentOS5.2 Apache下搭建Ruby on Rails开发环境 最近看上了Ruby on Rails的敏捷开发技术了,虽然早已不是什么新鲜玩意了,不过看着它越来越流行了,还是想看一看里面的究竟啊, 先从搭建Ruby on Rails的环境入手吧。

1.CentOS5.2 Apache下安装Ruby
rails框架也是Ruby做的,自然要先安装Ruby了,yum install ruby -y确认一下Ruby -v

2.CentOS5.2 Apache下安装RubyGems
RubyGems是Ruby函数库的管理系统在此之前先要导入dlutter软件仓库[root@host1 ~]# vi /etc/yum.repos.d/dlutter.repo修改成[dlutter]name=Unsupported RHEL5 packages (lutter)baseurl=http://people.redhat.com/dlutter/yum/rhel/5/$basearch/enabled=0gpgcheck=0确认[root@host1 ~]# yum --enablerepo=dlutter list然后直接用命令安装RubyGems [root@host1 ~]# yum --enablerepo=dlutter -y install rubygems.noarch 确认版本[root@host1 ~]# gem --version1.2.0安装好应该是1.2.0的版本,最新是1.3.0的,有兴趣的朋友可以用源码编译升级

3.rails框架的导入
这个比较简单,直接用RubyGems来安装[root@host1 ~]# gem install rails

4.最关键也是比较复杂的一步是CentOS5.2 Apache下 Web服务器的导入
关于Web服务器的选择,通常有很多争议,就Ruby on Rails而言,很多都是采用lighttpd当作Web Server,当作FastCGI应用程序来跑,但是lighttpd还是很难代替CentOS5.2 Apache的地位,特别是Rails程序以外还有其他Web程序的时候、不大可能完全移植到lighttpd上的,所以在这里,只是Rails程序跑在lighttpd上,对Rails程序的请求通过CentOS5.2 Apache下转送过来。先安装FastCGI
[root@host1 ~]# wget http://www.fastcgi.com/dist/fcgi-2.4.0.tar.gz
[root@host1 ~]# tar zxvf fcgi-2.4.0.tar.gz
[root@host1 ~]# cd fcgi-2.4.0
[root@host1 fcgi-2.4.0]# ./configure
[root@host1 ~]# gem install fcgi
[root@host1 fcgi-2.4.0]# make
[root@host1 fcgi-2.4.0]# make install
[root@host1 fcgi-2.4.0]# cd
[root@host1 ~]# rm -rf fcgi-2.4.0*

下面用RubyGems把Ruby的FastCGI的包导进来接下去就要安装lighttpd服务器了,先导入RPMforge 软件仓库
[root@host1 ~]# wget http://dag.wieers.com/packages/rpmforge-release/rpmforge-release-0.3.6-1.el5.rf.i386.rpm
[root@host1 ~]# rpm -Uhv rpmforge-release-0.3.6-1.el5.rf.i386.rpm
[root@host1 ~]# vi /etc/yum.repos.d/rpmforge.repoenabled = 1enabled = 0
[root@host1 ~]# wget http://dag.wieers.com/packages/RPM-GPG-KEY.dag.txt
[root@host1 ~]# rpm --import RPM-GPG-KEY.dag.txt
确认[root@host1 ~]# yum --enablerepo=rpmforge list

开始安装
[root@host1 ~]# yum --enable=rpmforge install lighttpd
[root@host1 ~]# yum --enable=rpmforge install lighttpd-fastcgi一般系统已经有CentOS5.2 Apache下服务了,为了避免冲突,还要配置一下lighttpd,
[root@host1 ~]# vi /etc/lighttpd/lighttpd.conf#"mod_rewrite",#"mod_redirect",#"mod_alias","mod_rewrite","mod_redirect","mod_alias","mod_fastcgi","mod_fastcgi",
#server.port= 81server.port= 3000  ←端口设置成3000不要与CentOS5.2 Apache下的重复#server.bind= "127.0.0.1"server.bind= "localhost" 自启动[root@host1 ~]# chkconfig lighttpd on

Rails应用程序的基本设置
[root@host1 ~]# cd /srv/www/lighttpd
[root@lighttpd]# mkdir rails
[root@lighttpd]# rails ./rails

赋予lighttpd用户的权限
[root@host1 ~]# cd
[root@host1 ~]# chown -R lighttpd. /srv/www/lighttpd/rails
[root@host1 ~]# chmod +x /srv/www/lighttpd/rails/public/dispatch.*

相关推荐