Skip to content

Commit 924f7e3

Browse files
author
Davi Torres
committed
cleanup
1 parent 82048ed commit 924f7e3

File tree

3 files changed

+18
-17
lines changed

3 files changed

+18
-17
lines changed

source/installguide/hypervisor/kvm.rst

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1541,17 +1541,18 @@ To open the required ports, execute the following commands:
15411541
$ ufw allow proto tcp from any to any port 49152:49216
15421542
15431543
.. note::
1544-
Since Ubuntu 22.04 LTS, the UFW's default policy for forwarding is set to "DROP".
1545-
Change it to "ACCEPT".
1544+
By default UFW is not enabled on Ubuntu. Executing these commands with the
1545+
firewall disabled does not enable the firewall.
15461546

1547-
.. parsed-literal::
1548-
sudo vi /etc/default/ufw
1547+
If you have an issue with ufw while using a bridged connection,
1548+
add those two lines at the end of the /etc/ufw/before.rules just before COMMIT
15491549

15501550
.. parsed-literal::
1551-
DEFAULT_FORWARD_POLICY="ACCEPT"
1551+
sudo vi /etc/ufw/before.rules
15521552
15531553
.. parsed-literal::
1554-
sudo ufw enable
1554+
-A FORWARD -d 192.168.42.11 -j ACCEPT
1555+
-A FORWARD -s 192.168.42.11 -j ACCEPT
15551556
15561557
15571558
Additional Packages Required for Features

source/installguide/management-server/_database.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -64,20 +64,20 @@ MySQL. See :ref:`install-database-on-separate-node`.
6464
innodb_rollback_on_timeout=1
6565
innodb_lock_wait_timeout=600
6666
max_connections=350
67-
log_bin=mysql-bin
68-
binlog_format=ROW
67+
log-bin=mysql-bin
68+
binlog-format = 'ROW'
6969
7070
.. note::
71-
For Ubuntu 16.04 and later, make sure you specify a ``server_id`` in your ``/etc/mysql/mysql.conf.d/mysqld.cnf`` file for binary logging. Set the ``server_id`` according to your database setup.
71+
For Ubuntu 16.04 and later, make sure you specify a ``server-id`` in your ``.cnf`` file for binary logging. Set the ``server-id`` according to your database setup.
7272

7373
.. parsed-literal::
7474
75-
server_id=source-01
75+
server-id=source-01
7676
innodb_rollback_on_timeout=1
7777
innodb_lock_wait_timeout=600
7878
max_connections=350
79-
log_bin=mysql-bin
80-
binlog_format=ROW
79+
log-bin=mysql-bin
80+
binlog-format = 'ROW'
8181
8282
.. note::
8383
You can also create a file ``/etc/mysql/conf.d/cloudstack.cnf``
@@ -328,9 +328,9 @@ same node for MySQL. See `“Install the Database on the Management Server Node
328328
innodb_rollback_on_timeout=1
329329
innodb_lock_wait_timeout=600
330330
max_connections=700
331-
log_bin=mysql-bin
332-
binlog_format=ROW
333-
bind-address=0.0.0.0
331+
log-bin=mysql-bin
332+
binlog-format = 'ROW'
333+
bind-address = 0.0.0.0
334334
335335
#. Start or restart MySQL to put the new configuration into effect.
336336

source/quickinstallationguide/qig.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,8 +353,8 @@ section:
353353
innodb_rollback_on_timeout=1
354354
innodb_lock_wait_timeout=600
355355
max_connections=350
356-
log_bin=mysql-bin
357-
binlog_format=ROW
356+
log-bin=mysql-bin
357+
binlog-format = 'ROW'
358358
359359
360360
Now that MySQL is properly configured we can start it and configure it to

0 commit comments

Comments
 (0)