Author: fapeeler
Date: Fri Aug  3 16:12:16 2012
New Revision: 1369071

URL: http://svn.apache.org/viewvc?rev=1369071&view=rev
Log:
CMS commit to vcl by fapeeler

Modified:
    vcl/site/trunk/content/docs/VCL23Installation.mdtext

Modified: vcl/site/trunk/content/docs/VCL23Installation.mdtext
URL: 
http://svn.apache.org/viewvc/vcl/site/trunk/content/docs/VCL23Installation.mdtext?rev=1369071&r1=1369070&r2=1369071&view=diff
==============================================================================
--- vcl/site/trunk/content/docs/VCL23Installation.mdtext (original)
+++ vcl/site/trunk/content/docs/VCL23Installation.mdtext Fri Aug  3 16:12:16 
2012
@@ -1,4 +1,3 @@
-
 **VCL 2.3 Installation Guide**
 
 This guide will provide the necessary steps to install and configure VCL 
software. It covers the set up of the database , web portal, and management 
node.
@@ -10,11 +9,24 @@ This guide will provide the necessary st
 VCL currently supports the use of mysql database.
 
  1. Download and Extract the Apache VCL Source
-     - If you have not already done so, download and the Apache VCL source to 
the database server:
+     * If you have not already done so, download and the Apache VCL source to 
the database server:
          <pre><code>wget 
http://www.apache.org/dist/vcl/apache-VCL-2.3.tar.bz2</code></pre>
-     - Extract the files:
+     * Extract the files:
         <pre><code>tar -jxvf apache-VCL-2.3.tar.bz2</code></pre>
 
+ 2. Install MySQL Server
+     * Install MySQL Server 5.x
+         <pre><code>yum install mysql-server -y</code></pre>
+     * Configure the MySQL daemon (mysqld) to start automatically:
+         <pre><code>/sbin/chkconfig --level 345 mysqld on</code></pre>
+     *  Start the MySQL daemon:
+         <pre><code>/sbin/service mysqld start</code></pre>
+     *  If the iptables firewall is being used and the web server and 
management nodes will be on different machines, port 3306 should be opend up
+         <pre><code>vi /etc/sysconfig/iptables</code></pre>
+         <pre><code>-A RH-Firewall-1-INPUT -m state --state NEW -s <web server 
IP> -p tcp --dport 3306 -j ACCEPT
+-A RH-Firewall-1-INPUT -m state --state NEW -s <management node IP> -p tcp 
--dport 3306 -j ACCEPT
+service iptables restart</code></pre>
+
 # Install and Configure the Web Components # {#web}
 
 **Prerequisites**


Reply via email to