Questions tagged [alpine]

Alpine Linux is a Linux distribution that prides itself on being small, simple, and secure. Alpine Linux is a common choice for running inside Docker containers.

Alpine Linux (https://alpinelinux.org/) is a Linux distribution that prides itself on being small, simple, and secure. Alpine Linux is a common choice for running inside Docker containers.

92 questions
0
votes
0 answers

Alpine Linux AArch64 on Oracle Cloud Serial Issue

I am trying to install Alpine Linux on Oracle Cloud AArch64 VM. I had already installed bootloader (Grub, arm64-efi), kernel (5.10.75) and userspace on it. In order to debug boot issues, I setup the serial console by appending console=tty0…
0
votes
1 answer

PHP5 to PHP7 unexpected increase in memory usage inside container

Last week we updated several wordpress sites which are running Alpine Linux as containers inside a host (Ubuntu 20.04) through LXD. A summary of the update is as follows: Alpine Linux v3.8 -> 3.14 PHP 5.3.6 -> 7.4.24 Wordpress 5.0.3 ->…
lepe
  • 468
  • 1
  • 6
  • 23
0
votes
0 answers

Using FRRouting RPKI with ssh on Alpine Linux

I am trying to configure frrouting to use RPKI over ssh on Alpine Linux 3.14.2. After installing FRRouting using apk add frr frr-rpki (installs version 7.5.1) and adding rpki cache example.com 22 rtr-ssh ./ssh_key/id_rsa ./ssh_key/id_rsa.pub…
Eric Stdlib
  • 115
  • 4
0
votes
1 answer

how to allow proxy pass with same location, with multiple context path

server { listen 80; server_name example.com www.example.com; location /consol { if ($request_method !~ ^(GET|POST)$) { return 405 "Not allowed"; } set $consolalb alb.backend; proxy_pass…
deepak
  • 1
0
votes
1 answer

QEMU VM with tap interface sees all packages coming from hypervisor instead of real source IP

I have set up a very simple Hypervisor using Alpine Linux and my VM sees all traffic coming from the IP of the hypervisor. Which also means if fail2ban tries to block attacks, it always blocks the hypervisors IP How can I have the VM see the real IP…
Christian
  • 333
  • 7
  • 17
0
votes
1 answer

RTNETLINK answers: File exists in alpine router

I already know that this ask may already be made here but i couldnt solve this there, idk if i made bad or something, so im asking with my own case, sorry if my english is bad but here it is this is how i have the content of…
Sergio D
  • 35
  • 6
0
votes
1 answer

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, …
Seguret
  • 1
  • 1
0
votes
1 answer

Is Alpine Linux a bad choice for a server?

I've been thinking of migrating one of my servers from Ubuntu to Alpine to host my web app. I came to know Alpine because of Docker. Is using Alpine as a server OS safe? Has anyone ever tried this?
theo
  • 3
  • 2
0
votes
1 answer

Why does "last" fail on Alpine with "last couldn't open file '/dev/null/wtmp' "?

Why is the last command failing on my fresh install of Alpine 3.12? $ last couldn't open file '/dev/null/wtmp': Not a directory wtmp begins Thu Jan 1 00:00 (on a Linode server if that matters)
Rob Bednark
  • 215
  • 1
  • 2
  • 8
0
votes
1 answer

Alpine setup on virtual machine UEFI does not boot

I am trying to setup Alpine linux on a VM (Proxmox) to replicate the layout of physical hardware (raspberry pi). The real layout is a raspberry pi 3, installed as "data" mode (based on wiki) with : sd card: 2 partitions (/boot, /) usb hard disk : 2…
Dede
  • 101
  • 3
0
votes
2 answers

How to enable DNS over TCP for resolving names on linux

How do I configure linux in general to allow dns over tcp? We discovered today that several different linux servers we use are not able to resolve DNS names with many ip addresses in the response. These response packets would be over 512 bytes, so…
Arthur Ulfeldt
  • 3,219
  • 9
  • 31
  • 40
0
votes
2 answers

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…
ZPascal
  • 23
  • 1
  • 6
0
votes
1 answer

Lighttpd alpine container logging

The context is that I want to serve a static website inside a docker container so I can have some dedicated metrics, and I want the logs to use stdout/stderr. To do that I thought of using Lighttpd with an Alpine image. I found a tip here where we…
VascoCC
  • 101
  • 3
0
votes
1 answer

Why does Alpine-based sshd shut down when first session ends?

I have a simple Docker container for a purposeful sshd server whose image derives from alpine:latest. It currently uses /usr/sbin/sshd -D -e -ddd as its entrypoint. When I ssh into it for running a certain command remotely, that command executes…
rookie099
  • 345
  • 2
  • 14
0
votes
2 answers

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…