Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Firefox killed by SIGBUS kernel alert in Redhat Linux. Or once you start looking into Firefox logs you find out "A content process crashed Firefox" followed by connection errors seen in firefox.log.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
213 views
Welcome To Ask or Share your Answers For Others

1 Answer

Firefox crashes is probably because the memory limit for /dev/shm inside the container is too small Increasing this memory will solve the crash due to SIGBUS.

Add --shm-size "1g" while starting a docker container.

In docker-compose

services:
  yourservice:
    build:
      context: ./docker
    shm_size: '1gb'

More details in bugzilla. [https://bugzilla.mozilla.org/show_bug.cgi?id=1245239][1]


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...