You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ga...@apache.org on 2013/07/11 07:53:59 UTC

git commit: updated refs/heads/4.1 to fc6085a

Updated Branches:
  refs/heads/4.1 0cf3b75c2 -> fc6085a6d


[DOC]configuration path refactor /etc/cloud to /etc/cloudstack
CLOUDSTACK-3182


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/fc6085a6
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/fc6085a6
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/fc6085a6

Branch: refs/heads/4.1
Commit: fc6085a6d16e5d281ba82fabd7b0aa83f22911c5
Parents: 0cf3b75
Author: Gavin Lee <ga...@gmail.com>
Authored: Thu Jul 11 13:50:15 2013 +0800
Committer: Gavin Lee <ga...@gmail.com>
Committed: Thu Jul 11 13:50:15 2013 +0800

----------------------------------------------------------------------
 docs/en-US/aws-ec2-configuration.xml                 |  4 ++--
 docs/en-US/change-database-config.xml                |  2 +-
 docs/en-US/change-database-password.xml              | 10 +++++-----
 docs/en-US/database-replication.xml                  |  2 +-
 docs/en-US/increase-management-server-max-memory.xml |  2 +-
 5 files changed, 10 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/fc6085a6/docs/en-US/aws-ec2-configuration.xml
----------------------------------------------------------------------
diff --git a/docs/en-US/aws-ec2-configuration.xml b/docs/en-US/aws-ec2-configuration.xml
index d6dd2b5..f0f2d0f 100644
--- a/docs/en-US/aws-ec2-configuration.xml
+++ b/docs/en-US/aws-ec2-configuration.xml
@@ -95,8 +95,8 @@
         <note>
             <para>(Optional) The AWS API listens for requests on port 7080. If you prefer AWS API to listen on another port, you can change it as follows:</para>
             <orderedlist numeration="loweralpha">
-                <listitem><para>Edit the files /etc/cloud/management/server.xml, /etc/cloud/management/server-nonssl.xml,
-                          and /etc/cloud/management/server-ssl.xml.</para></listitem>
+                <listitem><para>Edit the files /etc/cloudstack/management/server.xml, /etc/cloudstack/management/server-nonssl.xml,
+                          and /etc/cloudstack/management/server-ssl.xml.</para></listitem>
                 <listitem><para>In each file, find the tag &lt;Service name="Catalina7080"&gt;. Under this tag,
                           locate &lt;Connector executor="tomcatThreadPool-internal" port= ....&lt;.</para></listitem>
                 <listitem><para>Change the port to whatever port you want to use, then save the files.</para></listitem>

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/fc6085a6/docs/en-US/change-database-config.xml
----------------------------------------------------------------------
diff --git a/docs/en-US/change-database-config.xml b/docs/en-US/change-database-config.xml
index 34e7672..567b9e4 100644
--- a/docs/en-US/change-database-config.xml
+++ b/docs/en-US/change-database-config.xml
@@ -24,5 +24,5 @@
 
 <section id="change-database-config">
     <title>Changing the Database Configuration</title>
-    <para>The &PRODUCT; Management Server stores database configuration information (e.g., hostname, port, credentials) in the file <filename>/etc/cloud/management/db.properties</filename>. To effect a change, edit this file on each Management Server, then restart the Management Server.</para> 
+    <para>The &PRODUCT; Management Server stores database configuration information (e.g., hostname, port, credentials) in the file <filename>/etc/cloudstack/management/db.properties</filename>. To effect a change, edit this file on each Management Server, then restart the Management Server.</para> 
 </section>

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/fc6085a6/docs/en-US/change-database-password.xml
----------------------------------------------------------------------
diff --git a/docs/en-US/change-database-password.xml b/docs/en-US/change-database-password.xml
index 2bff289..e9b972f 100644
--- a/docs/en-US/change-database-password.xml
+++ b/docs/en-US/change-database-password.xml
@@ -24,7 +24,7 @@
 
 <section id="change-database-password">
     <title>Changing the Database Password</title>
-    <para>You may need to change the password for the MySQL account used by CloudStack. If so, you'll need to change the password in MySQL, and then add the encrypted password to <filename>/etc/cloud/management/db.properties</filename>.</para> 
+    <para>You may need to change the password for the MySQL account used by CloudStack. If so, you'll need to change the password in MySQL, and then add the encrypted password to <filename>/etc/cloudstack/management/db.properties</filename>.</para> 
     <orderedlist>
     <listitem>
         <para>Before changing the password, you'll need to stop CloudStack's management server and the usage engine if you've deployed that component.</para>
@@ -46,11 +46,11 @@
 </screen>
     </listitem>
     <listitem>
-        <para>The next step is to encrypt the password and copy the encrypted password to CloudStack's database configuration (<filename>/etc/cloud/management/db.properties</filename>).</para>
+        <para>The next step is to encrypt the password and copy the encrypted password to CloudStack's database configuration (<filename>/etc/cloudstack/management/db.properties</filename>).</para>
 <screen>
-<command># java -classpath /usr/share/java/cloud-jasypt-1.8.jar \
+    <command># java -classpath /usr/share/cloudstack-common/lib/jasypt-1.9.0.jar \
 org.jasypt.intf.cli.JasyptPBEStringEncryptionCLI encrypt.sh \ 
-input="newpassword123" password="`cat /etc/cloud/management/key`" \
+input="newpassword123" password="`cat /etc/cloudstack/management/key`" \
 verbose=false 
 </command>
 </screen>
@@ -59,7 +59,7 @@ verbose=false
 </note>
 </listitem>
 <listitem>
-    <para>Now, you'll update <filename>/etc/cloud/management/db.properties</filename> with the new ciphertext. Open <filename>/etc/cloud/management/db.properties</filename> in a text editor, and update these parameters: </para>
+    <para>Now, you'll update <filename>/etc/cloudstack/management/db.properties</filename> with the new ciphertext. Open <filename>/etc/cloudstack/management/db.properties</filename> in a text editor, and update these parameters: </para>
     <programlisting>
 db.cloud.password=ENC(encrypted_password_from_above) 
 db.usage.password=ENC(encrypted_password_from_above) 

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/fc6085a6/docs/en-US/database-replication.xml
----------------------------------------------------------------------
diff --git a/docs/en-US/database-replication.xml b/docs/en-US/database-replication.xml
index 7354aaa..8ca8071 100644
--- a/docs/en-US/database-replication.xml
+++ b/docs/en-US/database-replication.xml
@@ -132,7 +132,7 @@ mysql> start slave;
         <listitem><para>Stop the Management Servers (via service cloudstack-management stop).</para></listitem>
         <listitem><para>Change the replica's configuration to be a master and restart it.</para></listitem>
         <listitem><para>Ensure that the replica's port 3306 is open to the Management Servers.</para></listitem>
-        <listitem><para>Make a change so that the Management Server uses the new database. The simplest process here is to put the IP address of the new database server into each Management Server's /etc/cloud/management/db.properties.</para></listitem>
+        <listitem><para>Make a change so that the Management Server uses the new database. The simplest process here is to put the IP address of the new database server into each Management Server's /etc/cloudstack/management/db.properties.</para></listitem>
         <listitem>
         <para>Restart the Management Servers:</para>
         <programlisting>

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/fc6085a6/docs/en-US/increase-management-server-max-memory.xml
----------------------------------------------------------------------
diff --git a/docs/en-US/increase-management-server-max-memory.xml b/docs/en-US/increase-management-server-max-memory.xml
index 51c8724..8992ad6 100644
--- a/docs/en-US/increase-management-server-max-memory.xml
+++ b/docs/en-US/increase-management-server-max-memory.xml
@@ -26,7 +26,7 @@
     <title>Increase Management Server Maximum Memory</title>
     <para>If the Management Server is subject to high demand, the default maximum JVM memory allocation can be insufficient. To increase the memory:</para>
     <orderedlist>
-        <listitem><para>Edit the Tomcat configuration file:</para><programlisting>/etc/cloud/management/tomcat6.conf</programlisting></listitem>
+        <listitem><para>Edit the Tomcat configuration file:</para><programlisting>/etc/cloudstack/management/tomcat6.conf</programlisting></listitem>
         <listitem><para>Change the command-line parameter -XmxNNNm to a higher value of N.</para><para>For example, if the current value is -Xmx128m, change it to -Xmx1024m or higher.</para></listitem>
         <listitem><para>To put the new setting into effect, restart the Management Server.</para><programlisting># service cloudstack-management restart</programlisting></listitem>
       </orderedlist>