Author: cobra_admin
How to Install RabbitMQ on Ubuntu 22.04
Install RabbitMQ RabbitMQ is available in the default repositories on Ubuntu 22.04. Follow the steps below to install the Erlang dependency package and RabbitMQ on your server. Update the server package index. console $ sudo apt update View the available RabbitMQ APT repository information. console $ sudo apt-cache policy rabbitmq-server…
Read MoreHow to Use Curl
The Short Answer Version If you just want a quick reference for common curl commands, here’s a compact list of essentials: # Basic GET request $ curl https://example.com # Save output to file $ curl -o page.html https://example.com # Follow redirects $ curl -L http://example.com # Send POST form data $ curl…
Read MoreHow to Install Memcached on Ubuntu 20.04
Install Memcached Memcached is included in Ubuntu 20.04’s default package repositories and can be installed using the APT package manager. Alternatively, you can compile a specific version from source if needed. The following instructions cover installing Memcached and enabling it to run on your server. Update the server package index.…
Read MoreHow to Install Docker on Ubuntu 20.04
Install Docker Update the server package index. console $ sudo apt update Install all required dependency packages. console $ sudo apt install apt-transport-https ca-certificates curl software-properties-common -y Create the keyring directory. console $ sudo mkdir -p /etc/apt/keyrings Add the Docker GPG key to your server’s keyring. console $ sudo curl…
Read MoreHow to Install Caddy Web Server on Ubuntu 20.04
Install Caddy Caddy is not included in the default Ubuntu 20.04 APT repositories. However, it can be installed either from source files or by adding the latest repository information to your server. Follow the steps below to download the latest Caddy repository details and install the application on your server.…
Read MoreHow to Install Apache Web Server on Ubuntu 20.04
Install Apache The Apache web server package is included in the default repositories on Ubuntu 20.04. Follow the steps below to install the latest version of Apache using the default APT package manager and configure the web server to start automatically at boot time. Update the server’s package index. console…
Read More