You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vcl.apache.org by jf...@apache.org on 2015/02/04 15:24:21 UTC

svn commit: r1657247 - /vcl/site/trunk/content/docs/UpgradePreviousVersions/UpgradeFrom2.3.2to2.4.mdtext

Author: jfthomps
Date: Wed Feb  4 14:24:20 2015
New Revision: 1657247

URL: http://svn.apache.org/r1657247
Log:
added information about using script with arguments

Modified:
    vcl/site/trunk/content/docs/UpgradePreviousVersions/UpgradeFrom2.3.2to2.4.mdtext

Modified: vcl/site/trunk/content/docs/UpgradePreviousVersions/UpgradeFrom2.3.2to2.4.mdtext
URL: http://svn.apache.org/viewvc/vcl/site/trunk/content/docs/UpgradePreviousVersions/UpgradeFrom2.3.2to2.4.mdtext?rev=1657247&r1=1657246&r2=1657247&view=diff
==============================================================================
--- vcl/site/trunk/content/docs/UpgradePreviousVersions/UpgradeFrom2.3.2to2.4.mdtext (original)
+++ vcl/site/trunk/content/docs/UpgradePreviousVersions/UpgradeFrom2.3.2to2.4.mdtext Wed Feb  4 14:24:20 2015
@@ -22,7 +22,7 @@ VCL 2.4 is the first release to include
 upgrade VCL is the script. It will download and validate the VCL software and
 then upgrade your system. The script can be used to upgrade all three parts of
 VCL (database, web portal, and management node) or to upgrade each part
-individually.
+individually. It works to upgrade from any previous version of Apache VCL.
 
 [Download Upgrade Script (vcl-upgrade.sh)](https://www.apache.org/dist/vcl/vcl-upgrade.sh)
 
@@ -35,7 +35,31 @@ individually.
     gpg --verify vcl-upgrade.sh.asc
 
 Running the upgrade script with no arguments will step you through upgrading
-all three parts of VCL.
+all three parts of VCL. Alternatively, the following explains optional 
+arguments. If upgrading the management node part of VCL, it will also prompt 
+you to agree to the installation of various system level requirements needed 
+for the code to run.
+
+    :::BashLexer
+    vcl-upgrade.sh [-h|--help] [-d|--database] [-w|--web] [-m|--managementnode]
+            [--dbhost <hostname>] [--dbadminuser <username>]
+            [--dbadminpass <password>]
+
+    -d|--database - upgrade database components
+            --dbhost may optionally be specified if not localhost
+
+    -w|--web - upgrade web server components
+
+    -m|--managementnode - upgrade management node (vcld) components
+
+    --dbhost <hostname> - hostname of database server (default=localhost)
+
+    --dbname <name> - name of VCL database on database server (default=vcl)
+
+    --dbadminuser <username> - admin username for database; must have access
+            to modify database schema and dump data for backup (default=root)
+
+    --dbadminpass <password> - password for dbadminuser (default=[no password])
 
 ---