53fdd3f74e
Added note about importance of syncing NTP time before running running Ansibe bootstrap playbook. Patchset 1 updates. Patchset 2 updates. Signed-off-by: Ron Stone <ronald.stone@windriver.com> Change-Id: Icb68d609d728a9a72f94085d902ec6d63bdd273f Signed-off-by: Ron Stone <ronald.stone@windriver.com>
19 lines
596 B
ReStructuredText
19 lines
596 B
ReStructuredText
.. note::
|
|
Before running the Ansible bootstrap playbook, it is important that you
|
|
ensure that controller-0 server time is synchronized correctly. Run the following
|
|
command:
|
|
|
|
.. code-block:: bash
|
|
|
|
# check the current server time
|
|
$ date
|
|
|
|
# if the current server time is not correct, update with NTP
|
|
|
|
# first add nameserver for DNS resolution
|
|
$ echo "nameserver 8.8.8.8" >> /etc/resolvconf
|
|
$ echo "nameserver 8.8.4.4" >> /etc/resolvconf
|
|
|
|
# run ntpdate
|
|
$ sudo ntpdate 0.pool.ntp.org 1.pool.ntp.org
|