This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#cloud-config | |
# | |
hostname: node01 | |
users: | |
- name: sysop | |
passwd: $6$rounds=4096$.... | |
groups: | |
- sudo | |
- docker |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#cloud-config | |
# | |
hostname: node01 | |
users: | |
- name: sysop | |
passwd: $6$rounds=4096$.... | |
groups: | |
- sudo | |
- docker |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#cloud-config | |
# | |
hostname: node01 | |
users: | |
- name: sysop | |
passwd: $6$rounds=4096$.... | |
groups: | |
- sudo | |
- docker |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#cloud-config | |
# | |
hostname: node01 | |
users: | |
- name: sysop | |
passwd: $6$rounds=4096$.... | |
groups: | |
- sudo | |
- docker |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#cloud-config | |
# | |
hostname: node01 | |
users: | |
- name: sysop | |
passwd: $6$rounds=4096$eebbUuLtfIKr42ku$Dzenrm4BdmY796Jg.4o3HSjLDpIHpdZgZ0ZB8nddRHKWKHksYq2zNvu.6zeuenjckLm2aTtNaAKc4sFJmZI5z/ | |
groups: | |
- sudo | |
- docker |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#cloud-config | |
# | |
hostname: node01 | |
users: | |
- name: sysop | |
passwd: $6$rounds=4096$eebbUuLtfIKr42ku$Dzenrm4BdmY796Jg.4o3HSjLDpIHpdZgZ0ZB8nddRHKWKHksYq2zNvu.6zeuenjckLm2aTtNaAKc4sFJmZI5z/ | |
groups: | |
- sudo | |
- docker |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node02 lib64 # dmesg -e | grep -i -E "nfs|rpc" | |
[ +0.040010] RPC: Registered named UNIX socket transport module. | |
[ +0.001250] RPC: Registered udp transport module. | |
[ +0.000988] RPC: Registered tcp transport module. | |
[ +0.001818] RPC: Registered tcp NFSv4.1 backchannel transport module. | |
[ +0.017613] NFS: Registering the id_resolver key type |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node02 ~ # systemctl cat rpcbind | |
# /usr/lib64/systemd/system/rpcbind.service | |
[Unit] | |
Description=RPC Bind | |
After=network.target | |
Wants=rpcbind.target | |
Before=rpcbind.target | |
[Service] | |
Type=forking |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CoreOS stable (557.0.0) | |
Update Strategy: No Reboots | |
Failed Units: 1 | |
rpcbind.service | |
core@node01 ~ $ sudo su - | |
root@node01 ~ # system enable rpcbind.service | |
-su: system: command not found | |
root@node01 ~ # systemctl enable rpcbind.service | |
root@node01 ~ # systemctl start rpcbind.service | |
Job for rpcbind.service failed. See "systemctl status rpcbind.service" and "journalctl -xe" for details. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
write_files: | |
- path: /etc/systemd/network/static.network | |
permissions: 0644 | |
content: | | |
[Match] | |
Name=ensXXX | |
[Network] | |
Address=10.40.8.10/24 | |
Gateway=10.40.8.254 |