Amazon Linux#

These instructions explain how to install Salt on Amazon Linux 2 operating systems:

What is onedir?

Onedir is the Salt Project’s new packaging system. Onedir packages of Salt include the version of Python needed to run Salt and Salt’s required dependencies.

Beginning with the release of Salt 3006 (Sulfur), the Salt Project has phased out classic package builds for supported operating systems. Update your Salt infrastructure to the onedir packages as soon as possible. See Upgrade to onedir for more information.

Before you start#

Before installing Salt on your operating system, ensure that you first:

Install Salt on Amazon Linux 2 x86_64#

To install the Onedir packages of Salt on Amazon Linux 2 for x86_64 architecture:

  1. Run the following commands to install the Salt Project repository and key:

    To pin your Salt upgrades to the Latest Onedir package of Salt for Amazon Linux 2:

    sudo rpm --import https://repo.saltproject.io/salt/py3/amazon/2/x86_64/SALT-PROJECT-GPG-PUBKEY-2023.pub
    curl -fsSL https://repo.saltproject.io/salt/py3/amazon/2/x86_64/latest.repo | sudo tee /etc/yum.repos.d/salt-amzn.repo
    

    GPG key change

    The GPG key for the 3007.0 release is now named: SALT-PROJECT-GPG-PUBKEY-2023. You must import the new GPG key before upgrading or your upgrade will fail.

    To pin your Salt upgrades to the Major Onedir package of Salt for Amazon Linux 2:

    sudo rpm --import https://repo.saltproject.io/salt/py3/amazon/2/x86_64/SALT-PROJECT-GPG-PUBKEY-2023.pub
    curl -fsSL https://repo.saltproject.io/salt/py3/amazon/2/x86_64/3007.repo | sudo tee /etc/yum.repos.d/salt-amzn.repo
    

    GPG key change

    The GPG key for the 3007.0 release is now named: SALT-PROJECT-GPG-PUBKEY-2023. You must import the new GPG key before upgrading or your upgrade will fail.

    To pin your Salt upgrades to the Minor Onedir package of Salt for Amazon Linux 2:

    sudo rpm --import https://repo.saltproject.io/salt/py3/amazon/2/x86_64/SALT-PROJECT-GPG-PUBKEY-2023.pub
    curl -fsSL https://repo.saltproject.io/salt/py3/amazon/2/x86_64/minor/3007.0.repo | sudo tee /etc/yum.repos.d/salt-amzn.repo
    

    GPG key change

    The GPG key for the 3007.0 release is now named: SALT-PROJECT-GPG-PUBKEY-2023. You must import the new GPG key before upgrading or your upgrade will fail.

  2. Run sudo yum clean expire-cache to clear the repository metadata.

  3. Install the salt-minion, salt-master, or other Salt components:

    sudo yum install salt-master
    sudo yum install salt-minion
    sudo yum install salt-ssh
    sudo yum install salt-syndic
    sudo yum install salt-cloud
    sudo yum install salt-api
    
  4. Enable and start service for salt-minion, salt-master, or other Salt components:

    sudo systemctl enable salt-master && sudo systemctl start salt-master
    sudo systemctl enable salt-minion && sudo systemctl start salt-minion
    sudo systemctl enable salt-syndic && sudo systemctl start salt-syndic
    sudo systemctl enable salt-api && sudo systemctl start salt-api
    

    Note

    When you install a onedir version of Salt (3006 and later), Salt installs its own local version of Python and the dependencies needed for the core functionality of Salt.

    After installing a onedir verison of Salt, your system has both a global version of Python at the system level and a local version of Python used by Salt. This architecture change means that the Salt onedir paths for Python are different and you need to change how you install third-party Python dependencies that you use with Salt, including your state files. See Install dependencies for more information.

After installing Salt on your operating system, you need to complete the following post-installation steps:

Install Salt on Amazon Linux 2 aarch64 and arm64#

To install the Onedir packages of Salt on Amazon Linux 2 for aarch64 and arm64 architectures:

  1. Run the following commands to install the Salt Project repository and key:

    To pin your Salt upgrades to the Latest Onedir package of Salt for Amazon Linux 2:

    sudo rpm --import https://repo.saltproject.io/salt/py3/amazon/2/arm64/SALT-PROJECT-GPG-PUBKEY-2023.pub
    curl -fsSL https://repo.saltproject.io/salt/py3/amazon/2/arm64/latest.repo | sudo tee /etc/yum.repos.d/salt-amzn.repo
    

    GPG key change

    The GPG key for the 3007.0 release is now named: SALT-PROJECT-GPG-PUBKEY-2023. You must import the new GPG key before upgrading or your upgrade will fail.

    To pin your Salt upgrades to the Major Onedir package of Salt for Amazon Linux 2:

    sudo rpm --import https://repo.saltproject.io/salt/py3/amazon/2/arm64/SALT-PROJECT-GPG-PUBKEY-2023.pub
    curl -fsSL https://repo.saltproject.io/salt/py3/amazon/2/arm64/3007.repo | sudo tee /etc/yum.repos.d/salt-amzn.repo
    

    GPG key change

    The GPG key for the 3007.0 release is now named: SALT-PROJECT-GPG-PUBKEY-2023. You must import the new GPG key before upgrading or your upgrade will fail.

    To pin your Salt upgrades to the Minor Onedir package of Salt for Amazon Linux 2:

    sudo rpm --import https://repo.saltproject.io/salt/py3/amazon/2/arm64/SALT-PROJECT-GPG-PUBKEY-2023.pub
    curl -fsSL https://repo.saltproject.io/salt/py3/amazon/2/arm64/minor/3007.0.repo | sudo tee /etc/yum.repos.d/salt-amzn.repo
    

    GPG key change

    The GPG key for the 3007.0 release is now named: SALT-PROJECT-GPG-PUBKEY-2023. You must import the new GPG key before upgrading or your upgrade will fail.

  2. Run sudo yum clean expire-cache to clear the repository metadata.

  3. Install the salt-minion, salt-master, or other Salt components:

    sudo yum install salt-master
    sudo yum install salt-minion
    sudo yum install salt-ssh
    sudo yum install salt-syndic
    sudo yum install salt-cloud
    sudo yum install salt-api
    
  4. Enable and start service for salt-minion, salt-master, or other Salt components:

    sudo systemctl enable salt-master && sudo systemctl start salt-master
    sudo systemctl enable salt-minion && sudo systemctl start salt-minion
    sudo systemctl enable salt-syndic && sudo systemctl start salt-syndic
    sudo systemctl enable salt-api && sudo systemctl start salt-api
    

    Note

    When you install a onedir version of Salt (3006 and later), Salt installs its own local version of Python and the dependencies needed for the core functionality of Salt.

    After installing a onedir verison of Salt, your system has both a global version of Python at the system level and a local version of Python used by Salt. This architecture change means that the Salt onedir paths for Python are different and you need to change how you install third-party Python dependencies that you use with Salt, including your state files. See Install dependencies for more information.

After installing Salt on your operating system, you need to complete the following post-installation steps:

Install Salt on Amazon Linux 2023 x86_64#

To install the Onedir packages of Salt on Amazon Linux 2023 for x86_64 architecture:

  1. Run the following commands to install the Salt Project repository and key:

    To pin your Salt upgrades to the Latest Onedir package of Salt for Amazon Linux 2023:

    sudo rpm --import https://repo.saltproject.io/salt/py3/amazon/2023/x86_64/SALT-PROJECT-GPG-PUBKEY-2023.pub
    curl -fsSL https://repo.saltproject.io/salt/py3/amazon/2023/x86_64/latest.repo | sudo tee /etc/yum.repos.d/salt-amzn.repo
    

    GPG key change

    The GPG key for the 3007.0 release is now named: SALT-PROJECT-GPG-PUBKEY-2023. You must import the new GPG key before upgrading or your upgrade will fail.

    To pin your Salt upgrades to the Major Onedir package of Salt for Amazon Linux 2023:

    sudo rpm --import https://repo.saltproject.io/salt/py3/amazon/2023/x86_64/SALT-PROJECT-GPG-PUBKEY-2023.pub
    curl -fsSL https://repo.saltproject.io/salt/py3/amazon/2023/x86_64/3007.repo | sudo tee /etc/yum.repos.d/salt-amzn.repo
    

    GPG key change

    The GPG key for the 3007.0 release is now named: SALT-PROJECT-GPG-PUBKEY-2023. You must import the new GPG key before upgrading or your upgrade will fail.

    To pin your Salt upgrades to the Minor Onedir package of Salt for Amazon Linux 2023:

    sudo rpm --import https://repo.saltproject.io/salt/py3/amazon/2023/x86_64/SALT-PROJECT-GPG-PUBKEY-2023.pub
    curl -fsSL https://repo.saltproject.io/salt/py3/amazon/2023/x86_64/minor/3007.0.repo | sudo tee /etc/yum.repos.d/salt-amzn.repo
    

    GPG key change

    The GPG key for the 3007.0 release is now named: SALT-PROJECT-GPG-PUBKEY-2023. You must import the new GPG key before upgrading or your upgrade will fail.

  2. Run sudo yum clean expire-cache to clear the repository metadata.

  3. Install the salt-minion, salt-master, or other Salt components:

    sudo yum install salt-master
    sudo yum install salt-minion
    sudo yum install salt-ssh
    sudo yum install salt-syndic
    sudo yum install salt-cloud
    sudo yum install salt-api
    
  4. Enable and start service for salt-minion, salt-master, or other Salt components:

    sudo systemctl enable salt-master && sudo systemctl start salt-master
    sudo systemctl enable salt-minion && sudo systemctl start salt-minion
    sudo systemctl enable salt-syndic && sudo systemctl start salt-syndic
    sudo systemctl enable salt-api && sudo systemctl start salt-api
    

    Note

    When you install a onedir version of Salt (3006 and later), Salt installs its own local version of Python and the dependencies needed for the core functionality of Salt.

    After installing a onedir verison of Salt, your system has both a global version of Python at the system level and a local version of Python used by Salt. This architecture change means that the Salt onedir paths for Python are different and you need to change how you install third-party Python dependencies that you use with Salt, including your state files. See Install dependencies for more information.

After installing Salt on your operating system, you need to complete the following post-installation steps:

Install Salt on Amazon Linux 2023 aarch64 and arm64#

To install the Onedir packages of Salt on Amazon Linux 2023 for aarch64 and arm64 architectures:

  1. Run the following commands to install the Salt Project repository and key:

    To pin your Salt upgrades to the Latest Onedir package of Salt for Amazon Linux 2023:

    sudo rpm --import https://repo.saltproject.io/salt/py3/amazon/2023/arm64/SALT-PROJECT-GPG-PUBKEY-2023.pub
    curl -fsSL https://repo.saltproject.io/salt/py3/amazon/2023/arm64/latest.repo | sudo tee /etc/yum.repos.d/salt-amzn.repo
    

    GPG key change

    The GPG key for the 3007.0 release is now named: SALT-PROJECT-GPG-PUBKEY-2023. You must import the new GPG key before upgrading or your upgrade will fail.

    To pin your Salt upgrades to the Major Onedir package of Salt for Amazon Linux 2023:

    sudo rpm --import https://repo.saltproject.io/salt/py3/amazon/2023/arm64/SALT-PROJECT-GPG-PUBKEY-2023.pub
    curl -fsSL https://repo.saltproject.io/salt/py3/amazon/2023/arm64/3007.repo | sudo tee /etc/yum.repos.d/salt-amzn.repo
    

    GPG key change

    The GPG key for the 3007.0 release is now named: SALT-PROJECT-GPG-PUBKEY-2023. You must import the new GPG key before upgrading or your upgrade will fail.

    To pin your Salt upgrades to the Minor Onedir package of Salt for Amazon Linux 2023:

    sudo rpm --import https://repo.saltproject.io/salt/py3/amazon/2023/arm64/SALT-PROJECT-GPG-PUBKEY-2023.pub
    curl -fsSL https://repo.saltproject.io/salt/py3/amazon/2023/arm64/minor/3007.0.repo | sudo tee /etc/yum.repos.d/salt-amzn.repo
    

    GPG key change

    The GPG key for the 3007.0 release is now named: SALT-PROJECT-GPG-PUBKEY-2023. You must import the new GPG key before upgrading or your upgrade will fail.

  2. Run sudo yum clean expire-cache to clear the repository metadata.

  3. Install the salt-minion, salt-master, or other Salt components:

    sudo yum install salt-master
    sudo yum install salt-minion
    sudo yum install salt-ssh
    sudo yum install salt-syndic
    sudo yum install salt-cloud
    sudo yum install salt-api
    
  4. Enable and start service for salt-minion, salt-master, or other Salt components:

    sudo systemctl enable salt-master && sudo systemctl start salt-master
    sudo systemctl enable salt-minion && sudo systemctl start salt-minion
    sudo systemctl enable salt-syndic && sudo systemctl start salt-syndic
    sudo systemctl enable salt-api && sudo systemctl start salt-api
    

    Note

    When you install a onedir version of Salt (3006 and later), Salt installs its own local version of Python and the dependencies needed for the core functionality of Salt.

    After installing a onedir verison of Salt, your system has both a global version of Python at the system level and a local version of Python used by Salt. This architecture change means that the Salt onedir paths for Python are different and you need to change how you install third-party Python dependencies that you use with Salt, including your state files. See Install dependencies for more information.

After installing Salt on your operating system, you need to complete the following post-installation steps:

Browse the repo#

Browse the repo for Amazon Linux packages

Amazon Linux 2 Amazon Linux 2023 3007.0