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.

97 questions
3
votes
1 answer

Alpine ping: operation not permitted

I'm using Alpine (which uses busybox), and trying to get ping to work. First I tried installing iputils per https://serverfault.com/a/1001312 . No dice. Then I found something that said I need to set the sticky bit, but it's already set. What's…
Eddified
  • 213
  • 3
  • 7
2
votes
1 answer

Alpine Linux: fatal: privsep_preauth: preauth child terminated by signal 31

I have some containers with Alpine Linux. Yesterday I updated two of them from v3.8 to v3.10. OpenSSH server was upgraded from 7.7_p1-r4 to 8.0_p1-r0. After that, the client is unable to login. Note: Using default sshd configuration, nothing…
lepe
  • 469
  • 2
  • 6
  • 25
2
votes
1 answer

Arbitrary vlan interface name - undocumented configuration?

Today i was playing around with ethernet adapters and vlans in Alpine Linux. I tried to give the interfaces arbitrary names. After looking at the source i had the following example working Ethernet adapter named lan01 configured as DHCP client and a…
eKKiM
  • 1,540
  • 9
  • 23
2
votes
3 answers

Installing Shapely on Alpine docker

I am trying to move my project to docker and I've been using the alpine variant. This is a django project with postgres database Here is how i install the dependencies: ... ADD ./requirements.txt /srv/sites/mysite/requirements.txt RUN echo…
Amir Heshmati
  • 133
  • 1
  • 6
2
votes
0 answers

Docker storage re-mounted in read-only mode when container is generating a lot of large file(20G+)

I am getting stuck with an issue for a couple of days, and hope someone here could help or give some hints. So here is the issue: when I am running some docker images which performs large I/O operations, the container become read-only in the middle…
UTS-AnQ
  • 21
  • 2
2
votes
0 answers

Using PhangomJS in Docker Alpine

I am trying to use Jenkins as a docker container. For this purpose, I use the official docker image. As we have some integrations tests based on Selenium (Vaadin Workbench really), I need to run phantomjs as headless. The tests are executed…
King Midas
  • 141
  • 7
2
votes
1 answer

No php errors in Alpine/Nginx/PHP 7.1.2 with docker

I'm using Alpine / Nginx / PHP-FPM 7.1.2. I can't get PHP error's to display or output to the error.log in my Nginx server block. The access.log seems to work just fine. I've got this at the bottom of www.conf in…
Asa Carter
  • 249
  • 1
  • 3
  • 15
2
votes
0 answers

Jenkins cannot run ssh-agent, but local container can

I'm trying to configure an SSH key on my Jenkins instance with the SSH Agent Plugin. Jenkins is using Kubernetes containers as workers. My worker container image is alpine based, and just installs ansible and sshd. If I run a container locally, I am…
jackwise
  • 259
  • 1
  • 3
  • 9
2
votes
2 answers

Wireguard on Alpine: automatically mount wg0 after boot

I have a wireguard installed on a Alpine server. It's working, but when I reboot the server, I'm obliged to manually execute wg-quick up wg0 wireguard:~# wg show wireguard:~# wg-quick up wg0 [#] [#] ip link add wg0 type wireguard [#] wg setconf wg0…
cyanat
  • 31
  • 4
2
votes
1 answer

tail command retry flag not working with wildcards?

I want to tail a bunch of unknown directories names containing a particular non-existant file, e.g.: tail -F /tmp/*/app.log However that does not work as intended with the wildcard: if I create a file with that path, tail won't start following…
iomv
  • 123
  • 4
2
votes
2 answers

SNMP: hrSystemUptime.0: Unknown Object Identifier (Sub-id not found: (top) -> hrSystemUptime)

I get the error in the title when I issue the following command. $ snmpget -v3 -u edgeos-snmpd-user -l authPriv -a SHA -x AES -A authPhrase -X privPhrase 192.168.x.x hrSystemUptime.0 hrSystemUptime.0: Unknown Object Identifier (Sub-id not found:…
Stephen Rasku
  • 193
  • 2
  • 2
  • 9
2
votes
1 answer

Nginx letsencrypt certificate permission denied

Context I'm running an nginx instance in an alpine docker container (nginx:stable-alpine). The goal is to use nginx as a reverse proxy for one (or multiple) docker containers which only have HTTP and turn them into HTTPS with this outside-facing…
h345k34cr
  • 121
  • 1
  • 3
1
vote
2 answers

How to get information about security updates for Alpine Linux?

I would like to get information that important package updates occured (e.g. connected with security updates) - so that I know, that I need to rebuild my Alpine-based images with apps. It could be sth similar to Debian's…
keypress
  • 241
  • 2
  • 8
1
vote
2 answers

UsePAM not supported anymore

Running on an alpine docker image an SSH server. Starting the server I get the message: /etc/ssh/sshd_config line 24: Unsupported option UsePAM AFAIK UsePAM option has been supported for many years into OpenSSH. I'm running OpenSSH_8.1p1, OpenSSL…
Mazzy
  • 227
  • 3
  • 11
1
vote
1 answer

Filezilla fail to connect Dropbear SSH server _ unexpected end-of-file

I install dropbear SSH server in Alpine OS dropbear config : DROPBEAR_OPTS=" -p 22 -K 9" ( p = port , K = keep-alive in seconds) now I can connect to SSH terminal in KVM ssh root@192.168.122.58 but I can not connect to server via SFTP Filezilla…
user546674