Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Issue 1

duplicate minion_id


 more /etc/salt/minion_id

>> change the minion_id : example branch2_node1


[root@conductor t128]# t128-salt-key
Accepted Keys:
6ae7b114-a8a2-458b-aee3-05e30d2664e3
conductor
ssrdc1_node1
Denied Keys:
Unaccepted Keys:
branch1_node1  <<<<<<<<<<< This is the mistake
Rejected Keys:
[root@conductor t128]#


After changing the minion_id:

[root@conductor t128]# t128-salt-key
Accepted Keys:
6ae7b114-a8a2-458b-aee3-05e30d2664e3
conductor
ssrdc1_node1
Denied Keys:
Unaccepted Keys:
branch1_node1  

branch2_node1  <<<<<<<<<<< New one !!!!
Rejected Keys:
[root@conductor t128]#

Issue 2
conductordoes not see the branch salt-minion key

ping the conductor / curl IP@ -k

stop the branch 128T process





Code Block
titleserial number = mac address
collapsetrue
[root@branch1_node1 t128]# lshw -c network | more
  *-network:0
       description: Ethernet interface
       product: 82540EM Gigabit Ethernet Controller
       vendor: Intel Corporation
       physical id: 12
       bus info: pci@0000:00:12.0
       logical name: ens18
       version: 03
       serial: 4a:e1:dc:d1:a7:69  <<<<<<<<<<<<<<<<<<<<<< Mac address is the S/N
       size: 1Gbit/s
       capacity: 1Gbit/s
       width: 32 bits
       clock: 33MHz
       capabilities: bus_master rom ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=e1000 driverversion=7.3.21-k8-NAPI duplex=full ip=192.168.0.
215 latency=0 link=yes multicast=yes port=twisted pair speed=1Gbit/s
       resources: irq:11 memory:feb00000-feb1ffff ioport:e080(size=64) memory:fea00000-fea3ffff


>>>>>>> ether 4a:e1:dc:d1:a7:69

[root@branch1_node1 t128]# ip add show ens18
8: ens18: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
    link/ether 4a:e1:dc:d1:a7:69 brd ff:ff:ff:ff:ff:ff
    inet 192.168.0.215/24 brd 192.168.0.255 scope global noprefixroute dynamic ens18
       valid_lft 78856sec preferred_lft 78856sec
    inet6 fe80::1c38:afa9:6b87:dc86/64 scope link noprefixroute
       valid_lft forever preferred_lft forever


...