Setting up a Development Server (4/4)

Posted on Leave a commentPosted in Technology Center

Firewall Use iptables. Configure using sample below. # Generated by iptables-save v1.2.8 on Fri Feb 3 06:20:08 2006 *mangle :PREROUTING ACCEPT [0:0] :INPUT ACCEPT [0:0] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [0:0] :POSTROUTING ACCEPT [0:0] COMMIT # Completed on Fri Feb 3 06:20:08 2006 # Generated by iptables-save v1.2.8 on Fri Feb 3 06:20:08 2006 *filter read more…

read more...

Setting up a Development Server (3/4)

Posted on Leave a commentPosted in Technology Center

CVS Install CVS via yum. Setup the listening port. Make sure the following lines exist in /etc/services cvspserver 2401/tcp Create file named cvspserver under/etc/xinetd.dwith the following contents: service cvspserver { socket_type = stream protocol = tcp wait = no user = root server = /usr/bin/cvs server_args = –allow-root=/home/cvs pserver } Make sure to set allow-root read more…

read more...

Setting up Web Development Server (2/4)

Posted on 2 CommentsPosted in Technology Center

Postfix / SpamAssassin Follow instructions at: http://www.hughesjr.com/content/view/40/30/Guides Apache This is usually installed by default. Check for php installation. php needs to be installed via yum. Setup Virtual Domains. (http://httpd.apache.org/docs/2.0/vhosts/) Tomcat Download latest version of tomcat. Add symbolic link from tomcat installation directory. ln -s /home/tomcat/apache-tomcat-5.5.15 /usr/lib/tomcat Add the following lines to /etc/profile export JAVA_HOME=”/usr/lib/jvm/java” export read more…

read more...