Posts

System Administration

Image
Dear Unix Administrators, A warm welcome to my blog which is a helping tool for Unix administrators. The main discussion topics over here are AIX and Linux platforms. We are going to put the details of AIX, Linux and their related topics on DevOps over here, as much as possible. Please read through it, give your valuable comments and feedback to identify the improvement opportunities. You may suggest the new topics for discussion as well. Your feedback is most valuable for us to support you better. You shall give it through either the comment session on each blog page, as an email or through our helpdesk.   Please visit our contact page to get the details or mail ID and helpdesk. Well, Thanks for your interest in learning and reading this blog. Reach out to us for any help related to Unix Administration. Happy Learning.. Thank you, IT Consulting Team
Image
  Kubernetes Installation in CentOS 7   All the commands must be executed as root or with sudo privilege unless it is specified otherwise. 1.        Update the system to latest level. # yum update -y 2.        Verify the MAC address and product_uuid are unique for each node. # ifconfig -a # cat /sys/class/dmi/id/product_uuid   3.        Letting iptables see bridged traffic Make sure that the br_netfilter module is loaded This can be done by running:    lsmod | grep br_netfilter To load it explicitly call:   sudo modprobe br_netfilter   4.        Iptables to correctly see bridged traffic, ensure net.bridge.bridge-nf-call-iptables is set to 1 in your sysctl config. # cat <<EOF | sudo tee /etc/sysctl.d/k8s.conf net.bridge.bridge-nf-call-ip6tables = 1 net.bridge.bridge-nf-call-iptables = 1 EOF   # sysctl –system   5.        Check required ports are enabled in the IPTABLES or Firewall. Control-plane node(s) - Enable these ports   Protoc