Author: fapeeler
Date: Fri Aug 3 17:30:53 2012
New Revision: 1369105
URL: http://svn.apache.org/viewvc?rev=1369105&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=1369105&r1=1369104&r2=1369105&view=diff
==============================================================================
--- vcl/site/trunk/content/docs/VCL23Installation.mdtext (original)
+++ vcl/site/trunk/content/docs/VCL23Installation.mdtext Fri Aug 3 17:30:53
2012
@@ -10,12 +10,18 @@ VCL currently supports the use of mysql
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:
- <pre><code>wget
http://www.apache.org/dist/vcl/apache-VCL-2.3.tar.bz2</code></pre>
+
+ :::BashLexer
+ wget http://www.apache.org/dist/vcl/apache-VCL-2.3.tar.bz2
+
* Extract the files:
- <pre><code>tar -jxvf apache-VCL-2.3.tar.bz2</code></pre>
+
+ :::BashLexer
+ tar -jxvf apache-VCL-2.3.tar.bz2
2. Install MySQL Server
* Install MySQL Server 5.x
+
:::BashLexer
yum install mysql-server -y
@@ -30,8 +36,9 @@ VCL currently supports the use of mysql
/sbin/service mysqld start
* If the iptables firewall is being used and the web server and management
nodes will be on different machines, port 3306 should be opened up
- :::BashLexervi
- /etc/sysconfig/iptables
+
+ :::BashLexer
+ vi /etc/sysconfig/iptables
:::BashLexer
-A RH-Firewall-1-INPUT -m state --state NEW -s <web server IP> -p tcp
--dport 3306 -j ACCEPT
@@ -59,7 +66,9 @@ VCL currently supports the use of mysql
exit
* Import the vcl.sql file into the database. The **vcl.sql** file is
included in the **mysql** directory within the Apache VCL source code
- <pre><code>mysql vcl < apache-VCL-2.3/mysql/vcl.sql</code></pre>
+
+ :::BashLexer
+ mysql vcl < apache-VCL-2.3/mysql/vcl.sql
* * *