ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Installing a Salt Minion on CentOS 7

    Scheduled Pinned Locked Moved IT Discussion
    saltsalt minionsaltstackdevopslinuxcentoscentos 7sam salt open
    1 Posts 1 Posters 2.0k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • scottalanmillerS
      scottalanmiller
      last edited by scottalanmiller

      Installing the Salt Minion agent on a Minion node for Salt Stack is very simple. In this example I will build a CentOS 7 clone on a Scale HC3 cluster, then use the recommended bootstrap method to install the Minion system.

      0_1481435181617_Screenshot from 2016-12-11 00-39-31.png

      cd /tmp; curl -L https://bootstrap.saltstack.com -o install_salt.sh
      sh install_salt.sh
      

      The Salt Minion just needs a way to locate its master. We just need to add the IP address of our Salt Master into the /etc/hosts file on the Minion(s) in order to contact it.

      echo '192.168.1.97 salt' >> /etc/hosts
      

      Where 192.168.1.97 is the IP Address of your Salt Master.

      Don't forget to set your hostname of your Minion(s):

      echo 'minion1' > /etc/hostname
      
      1 Reply Last reply Reply Quote 4
      • 1 / 1
      • First post
        Last post