Skip to content
Closed
36 changes: 0 additions & 36 deletions source/installguide/hypervisor/kvm.rst
Original file line number Diff line number Diff line change
Expand Up @@ -289,42 +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 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

.. 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
Expand Down
10 changes: 7 additions & 3 deletions source/installguide/management-server/_database.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -293,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::
Expand Down Expand Up @@ -391,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.


40 changes: 31 additions & 9 deletions source/installguide/management-server/_nfs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <management-server-name>:/export/primary
umount /primary
mkdir /secondary
mount -t nfs <management-server-name>:/export/secondary
umount /secondary

#. Create directories for testing.

.. parsed-literal::

mkdir /primary /secondary

#. Mount the NFS shares.

.. parsed-literal::

mount -t nfs <management-server-name>:/export/primary /primary
mount -t nfs <management-server-name>:/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