Author: fapeeler
Date: Fri Aug  3 19:37:07 2012
New Revision: 1369179

URL: http://svn.apache.org/viewvc?rev=1369179&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=1369179&r1=1369178&r2=1369179&view=diff
==============================================================================
--- vcl/site/trunk/content/docs/VCL23Installation.mdtext (original)
+++ vcl/site/trunk/content/docs/VCL23Installation.mdtext Fri Aug  3 19:37:07 
2012
@@ -345,6 +345,63 @@ The VCL management node daemon (vcld) is
 
     * Save the vcld.conf file
 
+4. **Configure the SSH Client**
 
-  [1]: http://www.phpmyadmin.net/
+The SSH client on the management node should be configured to prevent SSH 
processes spawned by the root user to the computers it controls from hanging 
because of missing or different entries in the known_hosts file. 
+
+Edit the ssh_config file:
+
+       vi /etc/ssh/ssh_config
+Set the following parameters:
+UserKnownHostsFile /dev/null
+StrictHostKeyChecking no
+*Note: If you do not want these settings applied universally on the management 
node the SSH configuration can also be configured to only apply these settings 
to certain hosts or only for the root user. Consult the SSH documentation for 
more information.*
+
+5. **Install and Start the VCL Daemon (vcld) Service**
+
+    * Copy the vcld service script to /etc/init.d and name it vcld:
+       
+            :::BashLexer
+            cp /usr/local/vcl/bin/S99vcld.linux /etc/init.d/vcld
+
+    * Add the vcld service using chkconfig:
+       
+            :::BashLexer
+            /sbin/chkconfig --add vcld
+
+    * Configure the vcld service to automatically run at runtime levels 3-5:
+       
+            :::BashLexer
+            /sbin/chkconfig --level 345 vcld on
+
+    * Start the vcld service:
+       
+            :::BashLexer
+            /sbin/service vcld start
+
+    * Check the vcld service by monitoring the vcld.log file:
+
+            :::BashLexer
+            tail -f /var/log/vcld.log
+
+You should see the following being added to the log file every few seconds if 
the management node is checking in with the database:
+2012-05-15 13:23:45|25494|vcld:main(167)|lastcheckin time updated for 
management node 1: 2012-05-15 13:23:45
+
+
+6. **Set the vclsystem account password for xmlrpc api**
+
+Using the vcld -setup tool, set the vclsystem account. This is needed to 
properly use the block allocation features.
+       
+            :::BashLexer
+            /usr/local/vcl/bin/vcld -setup
+
+Select 1. VCL Base Module<br>
+Select 2. Set Local VCL User Account Password<br>
+Select 2. vclsystem<br> 
+From the vcld.conf file, paste or type the password from xmlrpc_pass variable 
and hit enter. 
+ 
+
+
+
+ [1]: http://www.phpmyadmin.net/
   [2]: http://www.mysql.com/
\ No newline at end of file


Reply via email to