Tech Rescue
  • Home
  • Acronyms
  • Cheat-Sheets
  • User Manuals
Kong

Install DecK for Kong in Ubuntu 20.04 (focal)

Hector Perez

Feb 28, 2022
  1. Download the TAR file:
curl -sL https://github.com/kong/deck/releases/download/v1.11.0/deck_1.11.0_linux_amd64.tar.gz -o deck.tar.gz
  1. Extract the TAR file:
tar -xf deck.tar.gz -C /tmp
  1. Copy the files to the right place:
sudo cp /tmp/deck /usr/local/bin/
  1. Test the installation with:
deck --help

References:

  • https://docs.konghq.com/deck/1.11.x/installation/
  • https://docs.konghq.com/deck/1.11.x/guides/getting-started/

Read next

Install Kong OSS DB-less mode in Ubuntu Mate Impish 21.10 in Raspberry PI 4

1. Pull docker images. sudo docker pull arm64v8/kong 2. Run Kong in DB-less mode. sudo docker run -d --name kong \ -e "KONG_DATABASE=off" \ -e "KONG_PROXY_ACCESS_LOG=/dev/stdout" \ -e "KONG_ADMIN_ACCESS_LOG=/dev/stdout" \ -e "KONG_PROXY_ERROR_LOG=/dev/stderr" \ -e "KONG_ADMIN_ERROR_
Hector Perez Feb 28, 2022
IEEE-754

IEEE-754

Floating Point Made Simple! The IEEE-754 standard defines how computers represent floating point numbers — that is, numbers with decimals like 3.14 or -0.001. It helps ensure that all systems (computers, languages, CPUs) store and calculate with floating point numbers consistently. Why Do We Need IEEE-754? Computers use binary
Hector Perez Apr 10, 2025

Authorize a user to authenticate with SSH key

NOTE: I am assuming that sshd is already up and running on your Skynet server. If not, run systemctl status sshd, if down you can run systemctl start sshd and systemctl enable sshd to start the service and allow it to run at system startup. For the purposes of this
Hector Perez Mar 10, 2022
Tech Rescue © 2025. Powered by Ghost