SSH into your EC2 instance. Run the following:
$ sudo yum install gcc This may return an "already installed" message. That's OK.
$ wget http://download.redis.io/redis-stable.tar.gz && tar xvzf redis-stable.tar.gz && cd redis-stable && make
SSH into your EC2 instance. Run the following:
$ sudo yum install gcc This may return an "already installed" message. That's OK.
$ wget http://download.redis.io/redis-stable.tar.gz && tar xvzf redis-stable.tar.gz && cd redis-stable && make
| #!/bin/sh | |
| # SPDX-FileCopyrightText: 2017-2024 SanderTheDragon <[email protected]> | |
| # | |
| # SPDX-License-Identifier: MIT | |
| arch=$(dpkg --print-architecture) | |
| echo "Detected architecture: $arch" | |
| case "$arch" in |
| #!/usr/local/bin/zsh | |
| function sdocker() { | |
| E_RED='\033[0;31m' | |
| E_GREEN='\033[0;32m' | |
| E_YELLOW='\033[1;33m' | |
| E_NORMAL='\033[0m' | |
| function prinfo() { | |
| echo "${E_GREEN}=i=${E_NORMAL} $*" |
| #!/bin/sh | |
| jq -c '.[]' params.json | while read i; do | |
| aws ssm put-parameter --cli-input-json $i | |
| done |
Making vagrant and ansible work together with virtualbox as a provider is not well documented across the documentations. Ansible's control node doesn't work on Windows. However, it works on WSL which make the installation of ansible and vagrant on WSL necessary and the access from WSL to virtualbox which is still running under the Windows host.