RubyOnRails installation on CentOS 4.4
based on
http://wiki.rubyonrails.org/rails/pages/RailsOnRHEL
http://wiki.rubyonrails.org/rails/pages/Rails+on+CentOS+4.4+with+Apache+and
+FastCGI+Simply
http://wiki.rubyonrails.com/rails/pages/HowtoDeployMoreThanOneRailsAppOnOne
Machine
Install CentOS
* choose "server" option during install, or just grab the "CentOS-Server" CD.
* firewall: open http/https ports
* selinux: disable
* select minimum install
Make sure your centos is uptodate
# yum update
Install Apache2 and MySQL (and also PHP if you want it)
# yum install httpd-devel httpd apr apr-devel apr-util-devel mysql-server mysql-client mysql-devel
# chkconfig httpd on
# chkconfig mysqld on
[ more.. ]
