Author: fapeeler
Date: Fri Aug 3 17:37:54 2012
New Revision: 1369111
URL: http://svn.apache.org/viewvc?rev=1369111&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=1369111&r1=1369110&r2=1369111&view=diff
==============================================================================
--- vcl/site/trunk/content/docs/VCL23Installation.mdtext (original)
+++ vcl/site/trunk/content/docs/VCL23Installation.mdtext Fri Aug 3 17:37:54
2012
@@ -9,33 +9,34 @@ 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:
:::BashLexer
wget http://www.apache.org/dist/vcl/apache-VCL-2.3.tar.bz2
- * Extract the files:
+ * Extract the files:
:::BashLexer
tar -jxvf apache-VCL-2.3.tar.bz2
2. Install MySQL Server
- * Install MySQL Server 5.x
+
+ * Install MySQL Server 5.x
:::BashLexer
yum install mysql-server -y
- * Configure the MySQL daemon (mysqld) to start automatically:
+ * Configure the MySQL daemon (mysqld) to start automatically:
:::BashLexer
/sbin/chkconfig --level 345 mysqld on
- * Start the MySQL daemon:
+ * Start the MySQL daemon:
:::BashLexer
/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
+ * 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
:::BashLexer
vi /etc/sysconfig/iptables
@@ -46,31 +47,33 @@ VCL currently supports the use of mysql
service iptables restart</code></pre>
3. Create the VCL Database
- * Run the MySQL command-line client:
+
+ * Run the MySQL command-line client:
:::BashLexer
mysql
- * Create a database:
+ * Create a database:
:::BashLexer
CREATE DATABASE vcl;
- * Create a user with SELECT, INSERT, UPDATE, DELETE, and CREATE TEMPORARY
TABLES privileges on the database you just created:
+ * Create a user with SELECT, INSERT, UPDATE, DELETE, and CREATE TEMPORARY
TABLES privileges on the database you just created:
+
:::BashLexer
GRANT SELECT,INSERT,UPDATE,DELETE,CREATE TEMPORARY TABLES ON vcl.* TO
'**vcluser**'@'localhost' IDENTIFIED BY '**vcluserpassword**';
- * Exit the MySQL command-line client
+ * Exit the MySQL command-line client
:::BashLexer
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
+ * Import the vcl.sql file into the database. The **vcl.sql** file is
included in the **mysql** directory within the Apache VCL source code
:::BashLexer
mysql vcl < apache-VCL-2.3/mysql/vcl.sql
-* * *
+----------
# Install and Configure the Web Components # {#web}