Installing AIDE in Alpine

I’m trying to make my Alpine instance more secure by installing AIDE but it doesn’t seem to be in the repos: #apk add aide fetch http://dl-cdn.alpinelinux.org/alpine/v3.8/main/x86_64/APKINDEX.tar.gz fetch http://dl-cdn.alpinelinux.org/alpine/v3.8/community/x86_64/APKINDEX.tar.gz ERROR: unsatisfiable constraints: aide (missing): required by: world[aide] The command ‘/bin/sh -c apk add aide’ returned a non-zero code: 1 Is there a way to install it … Read more

PHP curl_exec failing with HTTPS

I have a wordpress site that its failing. I tracked the issue and I found that is due to curl_exec() failing with HTTPS sites. I’m running php 5.6 in a Alpine Linux v3.8 container with lighttpd. The logs (error.log) don’t give too much information: (http-header-glue.c.1250) read(): Connection reset by peer 8 9 (gw_backend.c.2149) response not … Read more

I can’t log into a mysql service which is built on Docker/Apine due to wrong password, what can I do?

I run a docker/alpine based mysql instance for many days, today I want to log into it, but I get the following error: bash-4.4# mysql -uroot -h 172.19.0.1 -p Enter password: ERROR 1045 (28000): Access denied for user ‘root’@’172.19.0.1′ (using password: YES) I don’t know it is because I used the wrong password or any … Read more

Configuring a PHP Apache Web Service Container at Build Time

I am building a PHP Apache Web Service Docker Container Prototype. The first and simplest way was to create a Container with the official Image published by WordPress with a simple Dockerfile like: FROM wordpress:latest Which builds but than fails to run: # docker run -it wordpress_local apache2-foreground WordPress not found in /var/www/html – copying … Read more

Alpine Linux is not sending hostname to dhcp server

When alpine linux asks for ipv4 address from dhcp server, it is not sending hostname to dhcp server. So I cant access by server’s hostname in LAN. Here is my setup I am using Alpine Linux 3.12 on my VM (not container), and arch is aarch64. The router runs openwrt 19.07.3 and BusyBox is v1.31.1 … Read more

K8s no dns resolution on all used test images

Hi community and K8s experts, I installed a clean K8s cluster based on virtual machines (Debian 10). After the installation and the integration into my landscape, I repaired in the first step the coreDNS resolution. I did further test’s and found the following. The test setup consisted of a google.com nslookup and a local pod … Read more

Can’t get unbound to work in docker container

It seems pretty simple to set up but I can’t actually get it working.. Setup: $ docker run -it -p 53:5300/udp alpine /bin/sh $ apk add bash nano wget ca-certificates bind-tools unbound $ mkdir -p /var/log/unbound $ touch /var/log/unbound/unbound.log $ chown unbound /var/log/unbound/unbound.log /etc/unbound/unbound.conf: server: verbosity: 2 interface: 0.0.0.0 port: 5300 logfile: “/var/log/unbound/unbound.log” root-hints: /usr/share/dns-root-hints/named.root … Read more

Server DHCPv6 with Linux Alpine

I want create a server dhcp6 with alpine I’m using Kea-dhcp6. The my file config this is: { # DHCPv6 configuration starts on the next line “Dhcp6”: { # First we set up global values “valid-lifetime”: 4000, “renew-timer”: 1000, “rebind-timer”: 2000, “preferred-lifetime”: 3000, # Next we set up the interfaces to be used by the … Read more