Hi
Row was updated or deleted by another transaction (or unsaved-value mapping was incorrect) : [rundeck.User#83]
It seems the database is modified manually or by another instance/app, can you double-check this?
The “Row was updated or deleted by another transaction” problem in the Spring Boot context is frequently caused by an inconsistency between the ID field in your request object and Hibernate’s expectations (Spring Boot and Hibernate are part of Rundeck).
I’ve tested Rundeck 5.10 against SQL Server successfully using the following basic docker-compose:
services: rundeck: image: rundeck/rundeck:5.10.0 environment: RUNDECK_GRAILS_URL: http://localhost:4440 RUNDECK_DATABASE_DRIVER: com.microsoft.sqlserver.jdbc.SQLServerDriver RUNDECK_DATABASE_USERNAME: sa RUNDECK_DATABASE_PASSWORD: ASDasd11-- RUNDECK_DATABASE_URL: jdbc:sqlserver://mssql:1433;DatabaseName=tempdb tty: true ports: - 4440:4440 mssql: image: mcr.microsoft.com/mssql/server:2017-latest-ubuntu expose: - 1434 environment: - ACCEPT_EULA=Y - SA_PASSWORD=ASDasd11-- - MSSQL_PID=Express - MYSQL_PASSWORD=rundeckRegards!