| Summary: | install.pl: DBD::mysql::st execute failed: Incorrect integer value | ||
|---|---|---|---|
| Product: | Koha | Reporter: | Martin Holmes <ashwinloyal> |
| Component: | Installation and upgrade (web-based installer) | Assignee: | Bugs List <koha-bugs> |
| Status: | RESOLVED DUPLICATE | QA Contact: | Testopia <testopia> |
| Severity: | minor | ||
| Priority: | P5 - low | CC: | gmcharlt, javi, jonathan.druart |
| Version: | 19.05 | ||
| Hardware: | PC | ||
| OS: | Linux | ||
| GIT URL: | Initiative type: | --- | |
| Sponsorship status: | --- | Comma delimited list of Sponsors: | |
| Crowdfunding goal: | 0 | Patch complexity: | --- |
| Documentation contact: | Documentation submission: | ||
| Text to go in the release notes: | Version(s) released in: | ||
| Circulation function: | |||
|
Description
Martin Holmes
2019-07-01 08:09:59 UTC
I can reproduce the issue with Koha 18.11.05-1 and MariaDB 10.2.10: ii koha-common 18.11.05-1 all integrated (physical) library management system mysql Ver 15.1 Distrib 10.2.10-MariaDB, for debian-linux-gnu (x86_64) using readline 5.2 Fix: use MariaDB 10.1.40
Snippet of docker-compose file:
----------------------------------------------------------------------
version: '3.7'
services:
koha-db:
container_name: koha-db
# issue: install.pl: DBD::mysql::st execute failed: Incorrect integer value (edit)
#image: mariadb
#image: mariadb:10.0.15
image: mariadb:10.1
environment:
MYSQL_ROOT_PASSWORD: koha
koha:
container_name: koha
image: kedu/koha-community
cap_add:
- SYS_NICE
- DAC_READ_SEARCH
depends_on:
- koha-db
environment:
LIBRARY_NAME: koha
SLEEP: 3
INTRAPORT: 8080
DB_HOST: koha-db
DB_ROOT_PASSWORD: koha
ports:
- "80:80"
- "8080:8080"
----------------------------------------------------------------------
|