You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/quickinstallationguide/qig.rst
+20-4Lines changed: 20 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -101,6 +101,11 @@ will need to configure it to work in your environment. Since we specified
101
101
that there will be no DHCP server in this environment we will be manually
102
102
configuring your network interface.
103
103
104
+
Before going any further, make sure that "brctl" is installed and available:
105
+
106
+
.. parsed-literal::
107
+
# yum install bridge-utils -y
108
+
104
109
Connecting via the console you should login as root. We will start by creating
105
110
the bridge that Cloudstack will use for networking. Create and open
106
111
/etc/sysconfig/network-scripts/ifcfg-cloudbr0 and add the following settings:
@@ -126,7 +131,6 @@ the bridge that Cloudstack will use for networking. Create and open
126
131
NETMASK=255.255.255.0
127
132
DNS1=8.8.8.8
128
133
DNS2=8.8.4.4
129
-
DELAY=0
130
134
STP=yes
131
135
USERCTL=no
132
136
NM_CONTROLLED=no
@@ -390,7 +394,19 @@ section:
390
394
innodb_lock_wait_timeout=600
391
395
max_connections=350
392
396
log-bin=mysql-bin
393
-
binlog-format = 'ROW'
397
+
binlog-format = 'ROW'
398
+
399
+
.. note::
400
+
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.
401
+
402
+
::
403
+
404
+
server-id=master-01
405
+
innodb_rollback_on_timeout=1
406
+
innodb_lock_wait_timeout=600
407
+
max_connections=350
408
+
log-bin=mysql-bin
409
+
binlog-format = 'ROW'
394
410
395
411
Now that MySQL is properly configured we can start it and configure it to
0 commit comments