Author: fapeeler
Date: Fri Aug 3 18:04:06 2012
New Revision: 1369130
URL: http://svn.apache.org/viewvc?rev=1369130&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=1369130&r1=1369129&r2=1369130&view=diff
==============================================================================
--- vcl/site/trunk/content/docs/VCL23Installation.mdtext (original)
+++ vcl/site/trunk/content/docs/VCL23Installation.mdtext Fri Aug 3 18:04:06
2012
@@ -21,22 +21,22 @@ VCL currently supports the use of mysql
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,29 +46,29 @@ VCL currently supports the use of mysql
-A RH-Firewall-1-INPUT -m state --state NEW -s <management node
IP> -p tcp --dport 3306 -j ACCEPT
service iptables restart</code></pre>
- 3. Create the VCL Database
+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
@@ -108,9 +108,10 @@ VCL currently supports the use of mysql
- - -
- 1. Install the Required Linux Packages & PHP Modules
- * If your web server is running a Red Hat-based OS, the required
components can be installed with:
- For RHEL / CentOS 5
+1. Install the Required Linux Packages & PHP Modules
+ * If your web server is running a Red Hat-based OS, the required
components can be installed with:
+ For RHEL / CentOS 5
+
:::BashLexer
yum install httpd mod_ssl php php-gd php-mysql php-xml php-xmlrpc
php-ldap -y
@@ -118,5 +119,5 @@ VCL currently supports the use of mysql
:::BashLexer
yum install httpd mod_ssl php php-gd php-mysql php-xml
php-xmlrpc php-ldap php-process -y
- * Configure the web server daemon (httpd) to start automatically:
+ * Configure the web server daemon (httpd) to start automatically:
\ No newline at end of file