-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(terminated by SIGSEGV (core dumped); not expected) #79
Comments
Did you find an answer to this? |
Yes but I don’t remember how I got around this problem :( |
Would you mind sharing your docker-compose.yml? |
@deadlyicon I'm also facing this issue, would you mind sharing your docker-compose please? |
I was beating my head with this issue today. Using podman as well, and for god knows whatever reason mariadb / mysql did not like my folder (/home/podman/containers/mysql:/var/lib/mysql:Z). It could create files and permissions were good. My problem went away when I just let mysql use a volume. I kept getting other errors such as unathenticated user dropped connection and the logs/admin.log had errors of unable to connect to db and looping "migrating database". |
I'm also seeing this behaviour on 2024.1.0-beta on an ARM64 platform. Running
After inspecting the database, there is indeed no Primary key on the "Grant" table. mysql> show create table `Grant`;
CREATE TABLE `Grant` (
`Key` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`Type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`SubjectId` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
`SessionId` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
`ClientId` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`Description` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
`CreationDate` datetime(6) NOT NULL,
`ExpirationDate` datetime(6) DEFAULT NULL,
`ConsumedDate` datetime(6) DEFAULT NULL,
`Data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`Id` int NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci This is my docker-compose.yaml file: version: "3.8"
services:
bitwarden:
image: bitwarden/self-host:beta
restart: always
depends_on:
- db
env_file:
- settings.env
ports:
- "8000:8080"
volumes:
- bitwarden:/etc/bitwarden
db:
image: mysql:8.0
restart: always
environment:
MYSQL_DATABASE: "bitwarden_vault"
MYSQL_RANDOM_ROOT_PASSWORD: "true"
volumes:
- data:/var/lib/mysql
volumes:
bitwarden:
data: Not sure if it's related, but I also noticed that the admin still says "2023.12.0" on the |
I am trying to run a self hosted docker container. When my docker-compose boots
bitwarden/self-host:beta
using podman:I get this output
and the container stays open, supervisord doesn't exit but all the sub processes (icons, api etc) are not running.
I discovered this because I could visit the login page and enter an email address but upon submitting the form the /api request 502s becuase the internal nginx proxy cannot speak to the its upstream
Can anyone recommend a next step to debugging this?
Thank you!
The text was updated successfully, but these errors were encountered: