How to Automatically Restart a Failed Service in Linux
To prevent downtime, administrators can configure services to restart automatically whenever they fail, which is especially useful for web servers and databases
You can argue if bash is a good programming language or not, but you can’t argue that it is a programming language. However, there are a few oddities about it that make it different from most…
Instructions with example how to use WireGuard for a peer-to-peer connection. Preshared keys (PSK), wg-quick, integration in Systemd, key generation as well as dynamic and non-reachable peers are covered.
The tee command reads from standard input and writes to both standard output and one or more files at the same time. Tee is most commonly used in combination with other commands through piping.
I am writing a bash script which generates unattended GPG keys, I have looked through Unattended Usage of GPG and was surprised to find that 'Currently only one subkey can be handled.'
I am unable...
Automating PGP Key Issuance and Distribution with GPG and 1Password
SKILL LEVEL: Advanced.
In this article, we will be implementing one approach to centralize PGP key issuing and distribution for an organization. We'll use an existing Linux instance's GnuPG tool to issue and manage keys. To distribute keys to users, we'll use the 1Password CLI. Let's dive in!
The Infrastructure
To generate PGP keys on a Linux distribution we require the latest version of GPG (GnuPG). This is a free implementation of the OpenPGP standard which enables local key generation, encryption, and signing operations.
Connecting a local Elixir/Erlang to a running application inside a Docker container
I've got an Elixir application running inside a Docker container (in my laptop). The Elixir application was executed with the following command:
iex \
--name test@1.2.3.4 \
--cookie secret \
...
Apache Beam is an open source, unified model and set of language-specific SDKs for defining and executing data processing workflows, and also data ingestion and integration flows, supporting Enterprise Integration Patterns (EIPs) and Domain Specific Languages (DSLs). Dataflow pipelines simplify the mechanics of large-scale batch and streaming data processing and can run on a number of runtimes like Apache Flink, Apache Spark, and Google Cloud Dataflow (a cloud service). Beam also brings DSL in different languages, allowing users to easily implement their data integration processes.