From ca310444b6229edc817e00092d5143d3311b71ea Mon Sep 17 00:00:00 2001 From: Hudratronium <79725167+Hudratronium@users.noreply.github.com> Date: Sun, 28 Feb 2021 15:06:29 +0100 Subject: [PATCH 01/14] Added mentioning of MySQL8, Note for reboot and added firewall port Added MySQL version based on comptability matrix. Added a note for ensureing MySQL start-up after a reboot. Added a Port in the discribrion, which is shown at the end of the "cloudstack-management-setup" --- source/installguide/encryption.rst | 3 +++ .../management-server/_database.rst | 12 +++++---- .../installguide/management-server/_nfs.rst | 27 +++++++++++++------ .../management-server/_pkg_repo.rst | 3 +++ .../management-server/_prerequisite.rst | 7 +++++ 5 files changed, 39 insertions(+), 13 deletions(-) diff --git a/source/installguide/encryption.rst b/source/installguide/encryption.rst index dae437556e..d6e3549ae5 100644 --- a/source/installguide/encryption.rst +++ b/source/installguide/encryption.rst @@ -54,6 +54,9 @@ must be in a file in a known location. If the encryption type is set to com.cloud.utils.crypt.EncryptionSecretKeySender, which relays the key to the Management Server over a known port. +Needs some more information about actual usage. web seems to be broken. File works but how and where to store? When is it needed? + + The encryption type, database secret key, and Management Server secret key are set during CloudStack installation. They are all parameters to the CloudStack database setup script (cloudstack-setup-databases). The diff --git a/source/installguide/management-server/_database.rst b/source/installguide/management-server/_database.rst index 3fb29039c2..44a3e61c08 100644 --- a/source/installguide/management-server/_database.rst +++ b/source/installguide/management-server/_database.rst @@ -22,8 +22,9 @@ node, you can install the MySQL server locally. For an installation that has multiple management server nodes, we assume the MySQL database also runs on a separate node. -CloudStack has been tested with MySQL 5.1 and 5.5. These versions are -included in RHEL/CentOS and Ubuntu. +CloudStack has been tested with MySQL 5.1 ,5.5 and 8.0. The versions 5.1 +and 5.5 are included in RHEL/CentOS and Ubuntu. +For MySQL 8.0 please refer to the offical / community repositories of the product. Install the Database on the Management Server Node @@ -292,6 +293,9 @@ same node for MySQL. See `“Install the Database on the Management Server Node .. parsed-literal:: sudo service mysql restart + + .. note:: + Before performing a reboot please check if mysql is configured to start automatically. #. (CentOS and RHEL only; not required on Ubuntu) @@ -391,6 +395,4 @@ same node for MySQL. See `“Install the Database on the Management Server Node On RHEL and CentOS systems, firewalld (installed by default) will override all iptables rules set by the cloudstack-setup-management script, so ensure that the firewalld is disabled or ensure the correct firewalld rules - are in place to allow traffic to ports 8080, 8250 and 9090 to the management server. - - + are in place to allow traffic to ports 8080, 8250, 8443 and 9090 to the management server. \ No newline at end of file diff --git a/source/installguide/management-server/_nfs.rst b/source/installguide/management-server/_nfs.rst index 98df3cb5f6..1f96a11966 100644 --- a/source/installguide/management-server/_nfs.rst +++ b/source/installguide/management-server/_nfs.rst @@ -151,13 +151,14 @@ operating system version. exportfs -a #. Edit the /etc/sysconfig/nfs file. +At least for centos8 this needs to be created as it isn't availeabel .. parsed-literal:: vi /etc/sysconfig/nfs Uncomment the following lines: - +or add into previously created file .. parsed-literal:: LOCKD_TCPPORT=32803 @@ -221,6 +222,8 @@ operating system version. #. It is recommended that you test to be sure the previous steps have been successful. +Mark this as optional as it seems a part of the guide + #. Log in to the hypervisor host. #. Be sure NFS and rpcbind are running. The commands might be @@ -233,16 +236,24 @@ operating system version. chkconfig nfs on chkconfig rpcbind on reboot - + + For CentOS 8 + systemctl status nfs-server + systemctl status rpcbind + #. Log back in to the hypervisor host and try to mount the /export directories. For example, substitute your own management server name: .. parsed-literal:: + Create directorys for trial: + mkdir /primary /secondary + + Mount NFS-directorys into created directorys + mount -t nfs :/export/primary /primary #command missing + mount -t nfs :/export/secondary #command missing + + findmnt -lo source,target,fstype | grep nfs #shows currently mounted ressourcces filtered for nfs-shares + + umount /primary /secondary - mkdir /primary - mount -t nfs :/export/primary - umount /primary - mkdir /secondary - mount -t nfs :/export/secondary - umount /secondary diff --git a/source/installguide/management-server/_pkg_repo.rst b/source/installguide/management-server/_pkg_repo.rst index 453ca4db4d..914b76d832 100644 --- a/source/installguide/management-server/_pkg_repo.rst +++ b/source/installguide/management-server/_pkg_repo.rst @@ -49,6 +49,9 @@ To add the CloudStack repository, create ``/etc/yum.repos.d/cloudstack.repo`` and insert the following information. +At the moment faulty - not able to connect to https site + + .. parsed-literal:: [cloudstack] diff --git a/source/installguide/management-server/_prerequisite.rst b/source/installguide/management-server/_prerequisite.rst index 9c2ab52c75..c634008f0e 100644 --- a/source/installguide/management-server/_prerequisite.rst +++ b/source/installguide/management-server/_prerequisite.rst @@ -13,6 +13,13 @@ specific language governing permissions and limitations under the License. +Prerequisites +-------- +Installation is performed using CentOS Stream 8 installed in the standard Server +with GUI configuration. Other configurations should be suitable as long as the +need functionalitys are availeable. + + Overview -------- From dd7b9c31a0b96a88a7135c720f87a4f05e71e8ce Mon Sep 17 00:00:00 2001 From: Hudratronium <79725167+Hudratronium@users.noreply.github.com> Date: Sun, 28 Feb 2021 15:19:41 +0100 Subject: [PATCH 02/14] Revert "Added mentioning of MySQL8, Note for reboot and added firewall port" This reverts commit ca310444b6229edc817e00092d5143d3311b71ea. --- source/installguide/encryption.rst | 3 --- .../management-server/_database.rst | 12 ++++----- .../installguide/management-server/_nfs.rst | 27 ++++++------------- .../management-server/_pkg_repo.rst | 3 --- .../management-server/_prerequisite.rst | 7 ----- 5 files changed, 13 insertions(+), 39 deletions(-) diff --git a/source/installguide/encryption.rst b/source/installguide/encryption.rst index d6e3549ae5..dae437556e 100644 --- a/source/installguide/encryption.rst +++ b/source/installguide/encryption.rst @@ -54,9 +54,6 @@ must be in a file in a known location. If the encryption type is set to com.cloud.utils.crypt.EncryptionSecretKeySender, which relays the key to the Management Server over a known port. -Needs some more information about actual usage. web seems to be broken. File works but how and where to store? When is it needed? - - The encryption type, database secret key, and Management Server secret key are set during CloudStack installation. They are all parameters to the CloudStack database setup script (cloudstack-setup-databases). The diff --git a/source/installguide/management-server/_database.rst b/source/installguide/management-server/_database.rst index 44a3e61c08..3fb29039c2 100644 --- a/source/installguide/management-server/_database.rst +++ b/source/installguide/management-server/_database.rst @@ -22,9 +22,8 @@ node, you can install the MySQL server locally. For an installation that has multiple management server nodes, we assume the MySQL database also runs on a separate node. -CloudStack has been tested with MySQL 5.1 ,5.5 and 8.0. The versions 5.1 -and 5.5 are included in RHEL/CentOS and Ubuntu. -For MySQL 8.0 please refer to the offical / community repositories of the product. +CloudStack has been tested with MySQL 5.1 and 5.5. These versions are +included in RHEL/CentOS and Ubuntu. Install the Database on the Management Server Node @@ -293,9 +292,6 @@ same node for MySQL. See `“Install the Database on the Management Server Node .. parsed-literal:: sudo service mysql restart - - .. note:: - Before performing a reboot please check if mysql is configured to start automatically. #. (CentOS and RHEL only; not required on Ubuntu) @@ -395,4 +391,6 @@ same node for MySQL. See `“Install the Database on the Management Server Node On RHEL and CentOS systems, firewalld (installed by default) will override all iptables rules set by the cloudstack-setup-management script, so ensure that the firewalld is disabled or ensure the correct firewalld rules - are in place to allow traffic to ports 8080, 8250, 8443 and 9090 to the management server. \ No newline at end of file + are in place to allow traffic to ports 8080, 8250 and 9090 to the management server. + + diff --git a/source/installguide/management-server/_nfs.rst b/source/installguide/management-server/_nfs.rst index 1f96a11966..98df3cb5f6 100644 --- a/source/installguide/management-server/_nfs.rst +++ b/source/installguide/management-server/_nfs.rst @@ -151,14 +151,13 @@ operating system version. exportfs -a #. Edit the /etc/sysconfig/nfs file. -At least for centos8 this needs to be created as it isn't availeabel .. parsed-literal:: vi /etc/sysconfig/nfs Uncomment the following lines: -or add into previously created file + .. parsed-literal:: LOCKD_TCPPORT=32803 @@ -222,8 +221,6 @@ or add into previously created file #. It is recommended that you test to be sure the previous steps have been successful. -Mark this as optional as it seems a part of the guide - #. Log in to the hypervisor host. #. Be sure NFS and rpcbind are running. The commands might be @@ -236,24 +233,16 @@ Mark this as optional as it seems a part of the guide chkconfig nfs on chkconfig rpcbind on reboot - - For CentOS 8 - systemctl status nfs-server - systemctl status rpcbind - + #. Log back in to the hypervisor host and try to mount the /export directories. For example, substitute your own management server name: .. parsed-literal:: - Create directorys for trial: - mkdir /primary /secondary - - Mount NFS-directorys into created directorys - mount -t nfs :/export/primary /primary #command missing - mount -t nfs :/export/secondary #command missing - - findmnt -lo source,target,fstype | grep nfs #shows currently mounted ressourcces filtered for nfs-shares - - umount /primary /secondary + mkdir /primary + mount -t nfs :/export/primary + umount /primary + mkdir /secondary + mount -t nfs :/export/secondary + umount /secondary diff --git a/source/installguide/management-server/_pkg_repo.rst b/source/installguide/management-server/_pkg_repo.rst index 914b76d832..453ca4db4d 100644 --- a/source/installguide/management-server/_pkg_repo.rst +++ b/source/installguide/management-server/_pkg_repo.rst @@ -49,9 +49,6 @@ To add the CloudStack repository, create ``/etc/yum.repos.d/cloudstack.repo`` and insert the following information. -At the moment faulty - not able to connect to https site - - .. parsed-literal:: [cloudstack] diff --git a/source/installguide/management-server/_prerequisite.rst b/source/installguide/management-server/_prerequisite.rst index c634008f0e..9c2ab52c75 100644 --- a/source/installguide/management-server/_prerequisite.rst +++ b/source/installguide/management-server/_prerequisite.rst @@ -13,13 +13,6 @@ specific language governing permissions and limitations under the License. -Prerequisites --------- -Installation is performed using CentOS Stream 8 installed in the standard Server -with GUI configuration. Other configurations should be suitable as long as the -need functionalitys are availeable. - - Overview -------- From 0ffac8c05f1ad5e49aefaa7d433fea71e6cf00ef Mon Sep 17 00:00:00 2001 From: Hudratronium <79725167+Hudratronium@users.noreply.github.com> Date: Sun, 28 Feb 2021 15:25:54 +0100 Subject: [PATCH 03/14] MySQL 8 Based on compatibility matrix MySQL 8.0 is supported; check for on MySQL to get the needed version --- source/installguide/management-server/_database.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/installguide/management-server/_database.rst b/source/installguide/management-server/_database.rst index 3fb29039c2..5778a46307 100644 --- a/source/installguide/management-server/_database.rst +++ b/source/installguide/management-server/_database.rst @@ -22,8 +22,9 @@ node, you can install the MySQL server locally. For an installation that has multiple management server nodes, we assume the MySQL database also runs on a separate node. -CloudStack has been tested with MySQL 5.1 and 5.5. These versions are -included in RHEL/CentOS and Ubuntu. +CloudStack has been tested with MySQL 5.1 ,5.5 and 8.0. The versions 5.1 +and 5.5 are included in RHEL/CentOS and Ubuntu. +For MySQL 8.0 please refer to the offical / community repositories of the product.. Install the Database on the Management Server Node From de8e16f19e9a46a0f62f860e6a6731b2aa2d620d Mon Sep 17 00:00:00 2001 From: Hudratronium <79725167+Hudratronium@users.noreply.github.com> Date: Sun, 28 Feb 2021 15:28:06 +0100 Subject: [PATCH 04/14] Update _database.rst Added a note to check if automatic start of MySQL is configured --- source/installguide/management-server/_database.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/installguide/management-server/_database.rst b/source/installguide/management-server/_database.rst index 5778a46307..115fa93161 100644 --- a/source/installguide/management-server/_database.rst +++ b/source/installguide/management-server/_database.rst @@ -294,6 +294,9 @@ same node for MySQL. See `“Install the Database on the Management Server Node sudo service mysql restart + .. note:: + Before performing a reboot of the management server please check if mysql is configured to start automatically. + #. (CentOS and RHEL only; not required on Ubuntu) .. warning:: From 9afac2c7281a240321cc7fed342875eb9743b3d4 Mon Sep 17 00:00:00 2001 From: Hudratronium <79725167+Hudratronium@users.noreply.github.com> Date: Sun, 28 Feb 2021 15:29:15 +0100 Subject: [PATCH 05/14] Missing Port Added the port as it is shown after finishing cloudstack-management-setup --- source/installguide/management-server/_database.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/installguide/management-server/_database.rst b/source/installguide/management-server/_database.rst index 115fa93161..b7363c8b1f 100644 --- a/source/installguide/management-server/_database.rst +++ b/source/installguide/management-server/_database.rst @@ -395,6 +395,6 @@ same node for MySQL. See `“Install the Database on the Management Server Node On RHEL and CentOS systems, firewalld (installed by default) will override all iptables rules set by the cloudstack-setup-management script, so ensure that the firewalld is disabled or ensure the correct firewalld rules - are in place to allow traffic to ports 8080, 8250 and 9090 to the management server. + are in place to allow traffic to ports 8080, 8250, 8443 and 9090 to the management server. From c3124ec9d6566227536423ee92821c9dff50b472 Mon Sep 17 00:00:00 2001 From: Hudratronium <79725167+Hudratronium@users.noreply.github.com> Date: Sun, 28 Feb 2021 16:58:45 +0100 Subject: [PATCH 06/14] newly structured process Process now: Create - check - remove (as this is aimed as an productive installation) --- .../installguide/management-server/_nfs.rst | 40 ++++++++++++++----- 1 file changed, 31 insertions(+), 9 deletions(-) diff --git a/source/installguide/management-server/_nfs.rst b/source/installguide/management-server/_nfs.rst index 98df3cb5f6..287894dadc 100644 --- a/source/installguide/management-server/_nfs.rst +++ b/source/installguide/management-server/_nfs.rst @@ -237,12 +237,34 @@ operating system version. #. Log back in to the hypervisor host and try to mount the /export directories. For example, substitute your own management server name: - - .. parsed-literal:: - - mkdir /primary - mount -t nfs :/export/primary - umount /primary - mkdir /secondary - mount -t nfs :/export/secondary - umount /secondary + + #. Creat directories for testing. + + ..parsed-literal:: + + mkdir /primary /secondary + + #. Mount the NFS shares. + + .. parsed-literal:: + + mount -t nfs :/export/primary /primary + mount -t nfs :/export/secondary /secondary + + #. Verify that the shares are mounted correctly. + + .. parsed-literal:: + + findmnt -lo source,target,fstype | grep nfs + + #. Unmount the NFS shares. + + .. parsed-literal:: + + umount /primary /secondary + + #. Remove the beforehand created directories. + + .. parsed-literal:: + + rm -rf /primary /secondary \ No newline at end of file From 82e2833da91d448cd942082895af7da1681ad8b0 Mon Sep 17 00:00:00 2001 From: Hudratronium <79725167+Hudratronium@users.noreply.github.com> Date: Sun, 28 Feb 2021 19:55:45 +0100 Subject: [PATCH 07/14] Error with current libvirt 6.0.0 using libvirt 6.0.0 this argument will lead to libvirt is not going to start anymore. This feature seems to be deprecated by the libvirt project https://listman.redhat.com/archives/libvir-list/2019-August/msg01070.html --- source/installguide/hypervisor/kvm.rst | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/source/installguide/hypervisor/kvm.rst b/source/installguide/hypervisor/kvm.rst index 1a9b501917..e4e3d8eb01 100644 --- a/source/installguide/hypervisor/kvm.rst +++ b/source/installguide/hypervisor/kvm.rst @@ -289,15 +289,7 @@ cloudstack-agent and should already be installed. #. Turning on "listen\_tcp" in libvirtd.conf is not enough, we have to change the parameters as well: - On RHEL or CentOS modify ``/etc/sysconfig/libvirtd``: - - Uncomment the following line: - - .. parsed-literal:: - - #LIBVIRTD_ARGS="--listen" - - On Ubuntu 14.04: modify ``/etc/default/libvirt-bin`` + On Ubuntu 14.04: modify ``/etc/default/libvirt-bin`` Add "-l" to the following line From 9b59c718a00839da646348d9f80cada6ed891c76 Mon Sep 17 00:00:00 2001 From: Hudratronium <79725167+Hudratronium@users.noreply.github.com> Date: Sun, 28 Feb 2021 20:01:23 +0100 Subject: [PATCH 08/14] Revert "Error with current libvirt 6.0.0" This reverts commit 82e2833da91d448cd942082895af7da1681ad8b0. --- source/installguide/hypervisor/kvm.rst | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/source/installguide/hypervisor/kvm.rst b/source/installguide/hypervisor/kvm.rst index e4e3d8eb01..1a9b501917 100644 --- a/source/installguide/hypervisor/kvm.rst +++ b/source/installguide/hypervisor/kvm.rst @@ -289,7 +289,15 @@ cloudstack-agent and should already be installed. #. Turning on "listen\_tcp" in libvirtd.conf is not enough, we have to change the parameters as well: - On Ubuntu 14.04: modify ``/etc/default/libvirt-bin`` + On RHEL or CentOS modify ``/etc/sysconfig/libvirtd``: + + Uncomment the following line: + + .. parsed-literal:: + + #LIBVIRTD_ARGS="--listen" + + On Ubuntu 14.04: modify ``/etc/default/libvirt-bin`` Add "-l" to the following line From 200d7e07fe96840beaf480dd63514e45bc278052 Mon Sep 17 00:00:00 2001 From: Hudratronium <79725167+Hudratronium@users.noreply.github.com> Date: Sun, 28 Feb 2021 20:03:34 +0100 Subject: [PATCH 09/14] libvirt configuration using libvirt 6.0.0 this argument will lead to libvirt is not going to start anymore. This feature seems to be deprecated by the libvirt project https://listman.redhat.com/archives/libvir-list/2019-August/msg01070.html --- source/installguide/hypervisor/kvm.rst | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/source/installguide/hypervisor/kvm.rst b/source/installguide/hypervisor/kvm.rst index 1a9b501917..e4e3d8eb01 100644 --- a/source/installguide/hypervisor/kvm.rst +++ b/source/installguide/hypervisor/kvm.rst @@ -289,15 +289,7 @@ cloudstack-agent and should already be installed. #. Turning on "listen\_tcp" in libvirtd.conf is not enough, we have to change the parameters as well: - On RHEL or CentOS modify ``/etc/sysconfig/libvirtd``: - - Uncomment the following line: - - .. parsed-literal:: - - #LIBVIRTD_ARGS="--listen" - - On Ubuntu 14.04: modify ``/etc/default/libvirt-bin`` + On Ubuntu 14.04: modify ``/etc/default/libvirt-bin`` Add "-l" to the following line From 238c0b00c2fb0e3daa736ead0e60993326fb11a2 Mon Sep 17 00:00:00 2001 From: Hudratronium <79725167+Hudratronium@users.noreply.github.com> Date: Wed, 3 Mar 2021 19:43:10 +0100 Subject: [PATCH 10/14] Update kvm.rst As suggested removed stpes for Ubuntu 14 as it isn't soupported anymore --- source/installguide/hypervisor/kvm.rst | 28 -------------------------- 1 file changed, 28 deletions(-) diff --git a/source/installguide/hypervisor/kvm.rst b/source/installguide/hypervisor/kvm.rst index e4e3d8eb01..c3eae79c3c 100644 --- a/source/installguide/hypervisor/kvm.rst +++ b/source/installguide/hypervisor/kvm.rst @@ -289,34 +289,6 @@ cloudstack-agent and should already be installed. #. Turning on "listen\_tcp" in libvirtd.conf is not enough, we have to change the parameters as well: - On Ubuntu 14.04: modify ``/etc/default/libvirt-bin`` - - Add "-l" to the following line - - .. parsed-literal:: - - libvirtd_opts="-d" - - so it looks like: - - .. parsed-literal:: - - libvirtd_opts="-d -l" - - And modify ``/etc/init/libvirt-bin.conf`` - - Add "-l" to the following line - - .. parsed-literal:: - - env libvirtd_opts="-d" - - so it looks like: - - .. parsed-literal:: - - env libvirtd_opts="-d -l" - On Ubuntu 16.04: just modify ``/etc/default/libvirt-bin`` Uncomment and change the following line From 2d099c390b7fa1aeb18fe105b5cb8cf21ca78cb0 Mon Sep 17 00:00:00 2001 From: Hudratronium <79725167+Hudratronium@users.noreply.github.com> Date: Wed, 3 Mar 2021 19:45:09 +0100 Subject: [PATCH 11/14] Update _nfs.rst --- source/installguide/management-server/_nfs.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/installguide/management-server/_nfs.rst b/source/installguide/management-server/_nfs.rst index 287894dadc..28d9551a07 100644 --- a/source/installguide/management-server/_nfs.rst +++ b/source/installguide/management-server/_nfs.rst @@ -238,7 +238,7 @@ operating system version. directories. For example, substitute your own management server name: - #. Creat directories for testing. + #. Create directories for testing. ..parsed-literal:: @@ -267,4 +267,4 @@ operating system version. .. parsed-literal:: - rm -rf /primary /secondary \ No newline at end of file + rm -rf /primary /secondary From f3d966a5945dd1722e77150f43f99abd77ebee7c Mon Sep 17 00:00:00 2001 From: Hudratronium <79725167+Hudratronium@users.noreply.github.com> Date: Wed, 3 Mar 2021 19:46:50 +0100 Subject: [PATCH 12/14] Update _database.rst --- source/installguide/management-server/_database.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/installguide/management-server/_database.rst b/source/installguide/management-server/_database.rst index b7363c8b1f..96c0397f96 100644 --- a/source/installguide/management-server/_database.rst +++ b/source/installguide/management-server/_database.rst @@ -22,7 +22,7 @@ node, you can install the MySQL server locally. For an installation that has multiple management server nodes, we assume the MySQL database also runs on a separate node. -CloudStack has been tested with MySQL 5.1 ,5.5 and 8.0. The versions 5.1 +CloudStack has been tested with MySQL 5.1, 5.5 and 8.0. The versions 5.1 and 5.5 are included in RHEL/CentOS and Ubuntu. For MySQL 8.0 please refer to the offical / community repositories of the product.. From d037c35da4d954f91c67fdceb0aad4d85944a573 Mon Sep 17 00:00:00 2001 From: Hudratronium <79725167+Hudratronium@users.noreply.github.com> Date: Wed, 3 Mar 2021 19:48:12 +0100 Subject: [PATCH 13/14] Update _database.rst --- source/installguide/management-server/_database.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/installguide/management-server/_database.rst b/source/installguide/management-server/_database.rst index 96c0397f96..16c6fb65fc 100644 --- a/source/installguide/management-server/_database.rst +++ b/source/installguide/management-server/_database.rst @@ -24,7 +24,7 @@ runs on a separate node. CloudStack has been tested with MySQL 5.1, 5.5 and 8.0. The versions 5.1 and 5.5 are included in RHEL/CentOS and Ubuntu. -For MySQL 8.0 please refer to the offical / community repositories of the product.. +For MySQL 8.0 please refer to the offical / community repositories of the product. Install the Database on the Management Server Node @@ -295,7 +295,7 @@ same node for MySQL. See `“Install the Database on the Management Server Node sudo service mysql restart .. note:: - Before performing a reboot of the management server please check if mysql is configured to start automatically. + Before performing a reboot of the management server please check if MySQL is configured to start automatically. #. (CentOS and RHEL only; not required on Ubuntu) From 010402341b44664b1280d6ab89721dc539a89780 Mon Sep 17 00:00:00 2001 From: Hudratronium <79725167+Hudratronium@users.noreply.github.com> Date: Fri, 5 Mar 2021 22:00:37 +0100 Subject: [PATCH 14/14] Brocken format Just some cosmetics for right displaying in guide --- source/installguide/management-server/_nfs.rst | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/source/installguide/management-server/_nfs.rst b/source/installguide/management-server/_nfs.rst index 28d9551a07..d23ccea7b0 100644 --- a/source/installguide/management-server/_nfs.rst +++ b/source/installguide/management-server/_nfs.rst @@ -239,30 +239,30 @@ operating system version. name: #. Create directories for testing. - - ..parsed-literal:: + + .. parsed-literal:: mkdir /primary /secondary - + #. Mount the NFS shares. - + .. parsed-literal:: mount -t nfs :/export/primary /primary mount -t nfs :/export/secondary /secondary - + #. Verify that the shares are mounted correctly. .. parsed-literal:: findmnt -lo source,target,fstype | grep nfs - + #. Unmount the NFS shares. .. parsed-literal:: umount /primary /secondary - + #. Remove the beforehand created directories. .. parsed-literal::