GPS Tracker Server

Monacum

Benutzer
Sehr erfahren
Maintainer
Mitglied seit
03. Jan 2022
Beiträge
2.086
Punkte für Reaktionen
929
Punkte
204
Und wenn du das im Aufgabenplaner als root laufen lässt?
 

plang.pl

Benutzer
Contributor
Sehr erfahren
Maintainer
Mitglied seit
28. Okt 2020
Beiträge
14.414
Punkte für Reaktionen
5.033
Punkte
544
Wie sehen nun die Folder-Mounts aus?
Vielleicht hat der Container ja selbst eine generiert.

Bevor du die Befehle ausführst, musst du noch via sudo -i auf root umschalten.
Du musst auch das:
/opt/traccar/conf/traccar.xml
durch volume1/docker/traccar/traccar.xml ersetzten. Also auf der linken Seite, da die Datei bei dir ja dann da liegen soll. Sofern der Ordner bei dir auf Vol1 liegt. Also dann bei dir so:

Code:
docker run \

--rm \

--entrypoint cat \

traccar/traccar:latest \

volume1/docker/traccar/traccar.xml > /opt/traccar/traccar.xml

Vorher mal eine leere Datei anlegen in /docker/traccar/ mit dem Namen traccar.xml

Wenn das auch nicht hinhaut, musst du den rechten Part ersetzen. Bin mir grad nicht sicher. Also folglich wenns nicht hinhaut, nochmal das ausführen:
Code:
docker run \

--rm \

--entrypoint cat \

traccar/traccar:latest \

/opt/traccar/traccar.xml > volume1/docker/traccar/traccar.xml
 

loleke

Benutzer
Mitglied seit
09. Nov 2014
Beiträge
20
Punkte für Reaktionen
0
Punkte
1
also hab jetzt nochmal alles neu gemacht!

das sieht bis zum schluss gut aut.
 

Anhänge

  • Screenshot 2023-01-28 231708.jpg
    Screenshot 2023-01-28 231708.jpg
    114,2 KB · Aufrufe: 5

loleke

Benutzer
Mitglied seit
09. Nov 2014
Beiträge
20
Punkte für Reaktionen
0
Punkte
1
2 dateien hat er jetzt in den data ordner geschrieben,
im log ordner ist eine log, mit ein paar fehlern

2023-01-28 22:15:00 INFO: Operating system name: Linux version: 4.4.180+ architecture: amd64
2023-01-28 22:15:00 INFO: Java runtime name: OpenJDK 64-Bit Server VM vendor: Alpine version: 11.0.17+8-alpine-r1
2023-01-28 22:15:00 INFO: Memory limit heap: 1024mb non-heap: 0mb
2023-01-28 22:15:00 INFO: Character encoding: UTF-8 charset: UTF-8
2023-01-28 22:15:00 INFO: Version: 5.5
2023-01-28 22:15:00 INFO: Starting server...
2023-01-28 22:15:00 INFO: HikariPool-1 - Starting...
2023-01-28 22:15:01 INFO: HikariPool-1 - Added connection conn0: url=jdbc:h2:./data/database user=SA
2023-01-28 22:15:01 INFO: HikariPool-1 - Start completed.
2023-01-28 22:15:01 INFO: Set default schema name to PUBLIC
2023-01-28 22:15:01 INFO: Clearing database change log checksums
2023-01-28 22:15:02 INFO: Successfully acquired change log lock
2023-01-28 22:15:02 INFO: Creating database history table with name: PUBLIC.DATABASECHANGELOG
2023-01-28 22:15:02 INFO: Successfully released change log lock
2023-01-28 22:15:02 INFO: Successfully acquired change log lock
2023-01-28 22:15:03 INFO: Reading from PUBLIC.DATABASECHANGELOG
2023-01-28 22:15:04 INFO: Table tc_attributes created
2023-01-28 22:15:04 INFO: Table tc_calendars created
2023-01-28 22:15:04 INFO: Table tc_commands created
2023-01-28 22:15:04 INFO: Table tc_device_attribute created
2023-01-28 22:15:04 INFO: Table tc_device_command created
2023-01-28 22:15:04 INFO: Table tc_device_driver created
2023-01-28 22:15:04 INFO: Table tc_device_geofence created
2023-01-28 22:15:04 INFO: Table tc_device_maintenance created
2023-01-28 22:15:04 INFO: Table tc_device_notification created
2023-01-28 22:15:04 INFO: Table tc_devices created
2023-01-28 22:15:04 INFO: Table tc_drivers created
2023-01-28 22:15:04 INFO: Table tc_events created
2023-01-28 22:15:04 INFO: Table tc_geofences created
2023-01-28 22:15:04 INFO: Table tc_group_attribute created
2023-01-28 22:15:04 INFO: Table tc_group_command created
2023-01-28 22:15:04 INFO: Table tc_group_driver created
2023-01-28 22:15:04 INFO: Table tc_group_geofence created
2023-01-28 22:15:04 INFO: Table tc_group_maintenance created
2023-01-28 22:15:04 INFO: Table tc_group_notification created
2023-01-28 22:15:04 INFO: Table tc_groups created
2023-01-28 22:15:04 INFO: Table tc_maintenances created
2023-01-28 22:15:04 INFO: Table tc_notifications created
2023-01-28 22:15:04 INFO: Table tc_positions created
2023-01-28 22:15:04 INFO: Table tc_servers created
2023-01-28 22:15:04 INFO: Table tc_statistics created
2023-01-28 22:15:04 INFO: Table tc_user_attribute created
2023-01-28 22:15:04 INFO: Table tc_user_calendar created
2023-01-28 22:15:04 INFO: Table tc_user_command created
2023-01-28 22:15:04 INFO: Table tc_user_device created
2023-01-28 22:15:04 INFO: Table tc_user_driver created
2023-01-28 22:15:04 INFO: Table tc_user_geofence created
2023-01-28 22:15:04 INFO: Table tc_user_group created
2023-01-28 22:15:04 INFO: Table tc_user_maintenance created
2023-01-28 22:15:04 INFO: Table tc_user_notification created
2023-01-28 22:15:04 INFO: Table tc_user_user created
2023-01-28 22:15:04 INFO: Table tc_users created
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_device_command (commandid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_device_command (deviceid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_device_driver (deviceid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_device_driver (driverid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_device_geofence (deviceid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_device_geofence (geofenceid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_device_maintenance (deviceid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_device_maintenance (maintenanceid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_device_notification (deviceid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_device_notification (notificationid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_devices (groupid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_events (deviceid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_geofences (calendarid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_group_attribute (attributeid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_group_attribute (groupid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_group_command (commandid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_group_command (groupid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_group_driver (driverid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_group_driver (groupid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_group_geofence (geofenceid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_group_geofence (groupid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_group_maintenance (groupid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_group_maintenance (maintenanceid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_group_notification (groupid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_group_notification (notificationid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_notifications (calendarid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_positions (deviceid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_user_attribute (attributeid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_user_attribute (userid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_user_calendar (calendarid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_user_calendar (userid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_user_command (commandid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_user_command (userid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_device_attribute (attributeid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_device_attribute (deviceid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_user_device (deviceid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_user_device (userid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_user_driver (driverid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_user_driver (userid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_user_geofence (geofenceid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_user_geofence (userid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_user_group (groupid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_user_group (userid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_user_maintenance (maintenanceid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_user_maintenance (userid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_user_notification (notificationid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_user_notification (userid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_user_user (userid)
2023-01-28 22:15:04 INFO: New row inserted into tc_servers
2023-01-28 22:15:04 INFO: New row inserted into tc_users
2023-01-28 22:15:04 INFO: ChangeSet changelog-4.0-clean::changelog-4.0-clean::author ran successfully in 285ms
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_groups (groupid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_user_user (manageduserid)
2023-01-28 22:15:04 INFO: ChangeSet changelog-4.0-clean::changelog-4.0-clean-common::author ran successfully in 7ms
2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-3.3::changelog-3.3::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : Not precondition failed

2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-3.5::changelog-3.5::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : Not precondition failed

2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-3.6::changelog-3.6::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : Not precondition failed

2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-3.7::changelog-3.7::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : Not precondition failed

2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-3.7::changelog-3.7-notmssql::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : Not precondition failed

2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-3.8::changelog-3.8::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : Not precondition failed

2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-3.9::changelog-3.9::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : Not precondition failed

2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-3.10::changelog-3.10::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : Not precondition failed

2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-3.10::changelog-3.10-notmssql::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : Not precondition failed

2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-3.10::changelog-3.10-mssql::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : Not precondition failed

2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-3.10::changelog-3.7-mssql::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : Not precondition failed

2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-3.11::changelog-3.11::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : Not precondition failed

2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-3.12::changelog-3.12::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : Not precondition failed

2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-3.12::changelog-3.12-notmssql::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : Not precondition failed

2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-3.12::changelog-3.12-pgsql::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : Not precondition failed

2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-3.14::changelog-3.14::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : Not precondition failed

2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-3.15::changelog-3.15::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : Not precondition failed

2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-3.16::changelog-3.16::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : Not precondition failed

2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-3.17::changelog-3.3-admin::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : Not precondition failed

2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-3.17::changelog-3.17::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : Not precondition failed

2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-4.0::changelog-4.0-pre::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : Not precondition failed

2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-4.0::changelog-4.0-common::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : Not precondition failed

2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-4.0::changelog-4.0-pg::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : Not precondition failed

2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-4.0::changelog-4.0::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : Not precondition failed

2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-4.0::changelog-4.0-renaming::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : Not precondition failed

2023-01-28 22:15:04 INFO: Marking ChangeSet: "changelog-4.1::changelog-4.1-mssql::author" as ran despite precondition failure due to onFail='MARK_RAN':
schema/changelog-master.xml : DBMS Precondition failed: expected mssql, got h2

2023-01-28 22:15:04 INFO: Index user_device_user_id created
2023-01-28 22:15:04 INFO: Index position_deviceid_fixtime created
2023-01-28 22:15:04 INFO: ChangeSet changelog-4.7::changelog-4.7::author ran successfully in 72ms
2023-01-28 22:15:04 INFO: Index event_deviceid_servertime created
2023-01-28 22:15:04 INFO: ChangeSet changelog-4.9::changelog-4.9::author ran successfully in 2ms
2023-01-28 22:15:04 INFO: Columns protocols(VARCHAR(4096)) added to tc_statistics
2023-01-28 22:15:04 INFO: ChangeSet changelog-4.10::changelog-4.10::author ran successfully in 9ms
2023-01-28 22:15:04 INFO: Columns announcement(VARCHAR(4000)) added to tc_servers
2023-01-28 22:15:04 INFO: ChangeSet changelog-4.11::changelog-4.11::author ran successfully in 6ms
2023-01-28 22:15:04 INFO: Column tc_events.servertime renamed to eventtime
2023-01-28 22:15:04 INFO: ChangeSet changelog-4.13::changelog-4.13::author ran successfully in 2ms
2023-01-28 22:15:04 INFO: Table tc_orders created
2023-01-28 22:15:04 INFO: Table tc_user_order created
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_user_order (userid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_user_order (orderid)
2023-01-28 22:15:04 INFO: Table tc_group_order created
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_group_order (groupid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_group_order (orderid)
2023-01-28 22:15:04 INFO: Table tc_device_order created
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_device_order (deviceid)
2023-01-28 22:15:04 INFO: Foreign key constraint added to tc_device_order (orderid)
2023-01-28 22:15:04 INFO: ChangeSet changelog-4.15::changelog-4.15::author ran successfully in 25ms
2023-01-28 22:15:04 INFO: Columns disablereports(BOOLEAN) added to tc_servers
2023-01-28 22:15:04 INFO: Columns disablereports(BOOLEAN) added to tc_users
2023-01-28 22:15:04 INFO: Column tc_orders.toAddress renamed to toaddresstmp
2023-01-28 22:15:04 INFO: Column tc_orders.fromAddress renamed to fromaddresstmp
2023-01-28 22:15:04 INFO: Column tc_orders.toaddresstmp renamed to toaddress
2023-01-28 22:15:04 INFO: Column tc_orders.fromaddresstmp renamed to fromaddress
2023-01-28 22:15:04 INFO: ChangeSet changelog-5.0::changelog-5.0::author ran successfully in 37ms
2023-01-28 22:15:04 INFO: Index idx_drivers_uniqueid created
2023-01-28 22:15:04 INFO: Index idx_devices_uniqueid created
2023-01-28 22:15:04 INFO: Index idx_users_email created
2023-01-28 22:15:04 INFO: Index idx_users_login created
2023-01-28 22:15:04 INFO: Index idx_users_token created
2023-01-28 22:15:04 INFO: Columns overlayurl(VARCHAR(512)) added to tc_servers
2023-01-28 22:15:04 INFO: ChangeSet changelog-5.1::changelog-5.1::author ran successfully in 13ms
2023-01-28 22:15:04 INFO: Columns status(CHAR(8)) added to tc_devices
2023-01-28 22:15:04 INFO: Columns geofenceids(VARCHAR(128)) added to tc_devices
2023-01-28 22:15:04 INFO: ChangeSet changelog-5.2::changelog-5.2::author ran successfully in 31ms
2023-01-28 22:15:04 INFO: Columns fixedemail(BOOLEAN) added to tc_servers
2023-01-28 22:15:05 INFO: Columns fixedemail(BOOLEAN) added to tc_users
2023-01-28 22:15:05 INFO: Columns expirationtime(TIMESTAMP) added to tc_devices
2023-01-28 22:15:05 INFO: Table tc_keystore created
2023-01-28 22:15:05 INFO: Index idx_users_token dropped from table tc_users
2023-01-28 22:15:05 INFO: Column tc_users.token dropped
2023-01-28 22:15:05 INFO: ChangeSet changelog-5.3::changelog-5.3::author ran successfully in 51ms
2023-01-28 22:15:05 INFO: Columns motionstate(BOOLEAN),motiontime(TIMESTAMP),motiondistance(DOUBLE),overspeedstate(BOOLEAN),overspeedtime(TIMESTAMP),overspeedgeofenceid(INT) added to tc_devices
2023-01-28 22:15:05 INFO: Table tc_commands_queue created
2023-01-28 22:15:05 INFO: Foreign key constraint added to tc_commands_queue (deviceid)
2023-01-28 22:15:05 INFO: Index idx_commands_queue_deviceid created
2023-01-28 22:15:05 INFO: ChangeSet changelog-5.4::changelog-5.4::author ran successfully in 78ms
2023-01-28 22:15:05 INFO: Column tc_commands_queue.description dropped
2023-01-28 22:15:05 INFO: ChangeSet changelog-5.5::changelog-5.5::author ran successfully in 5ms
2023-01-28 22:15:05 INFO: Successfully released change log lock
2023-01-28 22:15:07 INFO: jetty-10.0.12; built: 2022-09-14T01:54:40.076Z; git: 408d0139887e27a57b54ed52e2d92a36731a7e88; jvm 11.0.17+8-alpine-r1
2023-01-28 22:15:07 INFO: Started o.t.w.@314f59b{/,null,AVAILABLE}
2023-01-28 22:15:07 INFO: Session workerName=node0
2023-01-28 22:15:08 WARN: JAXBContext implementation could not be found. WADL feature is disabled.
2023-01-28 22:15:08 INFO: Started o.e.j.s.ServletContextHandler@1eda309d{/,null,AVAILABLE}
2023-01-28 22:15:08 INFO: Started ServerConnector@6f8667bb{HTTP/1.1, (http/1.1)}{0.0.0.0:8082}
2023-01-28 22:15:08 INFO: Started Server@da34eb0{STARTING}[10.0.12,sto=0] @10411ms
2023-01-28 22:15:08 WARN: No systemd support - Unable to load library 'systemd':
Error loading shared library libsystemd.so: No such file or directory
Error loading shared library libsystemd.so: No such file or directory
Native library (linux-x86-64/libsystemd.so) not found in resource path (tracker-server.jar) - UnsatisfiedLinkError (... < TaskHealthCheck:49 < <gener:-1 < *:-1 < ... < ScheduleManager:42 < ...)
 

plang.pl

Benutzer
Contributor
Sehr erfahren
Maintainer
Mitglied seit
28. Okt 2020
Beiträge
14.414
Punkte für Reaktionen
5.033
Punkte
544
Du sagst zwar immer noch nicht, wie deine Folder-Mounts aussehen, aber gut. Wird schon passen. Wenn nicht, sind halt bald die Daten wech.
Mit den Fehlern aus deinen Logs kann ich nix anfangen, da ich traccar eigentlich gar nicht nutze 🤪
 

loleke

Benutzer
Mitglied seit
09. Nov 2014
Beiträge
20
Punkte für Reaktionen
0
Punkte
1
achso sorry, brasselt gerade soviel auf mich ein!

ich würde sagen unverändert
 

Anhänge

  • Screenshot 2023-01-28 232432.jpg
    Screenshot 2023-01-28 232432.jpg
    44,9 KB · Aufrufe: 11

Monacum

Benutzer
Sehr erfahren
Maintainer
Mitglied seit
03. Jan 2022
Beiträge
2.086
Punkte für Reaktionen
929
Punkte
204
Wie @plang.pl schrieb: /volume1/docker/…. Bei dir fehlt das /volume1.
 

plang.pl

Benutzer
Contributor
Sehr erfahren
Maintainer
Mitglied seit
28. Okt 2020
Beiträge
14.414
Punkte für Reaktionen
5.033
Punkte
544
Jap. Wenn es damit funzt, dann siehts eigentlich gut aus.
Externe Datensicherung nicht vergessen! Einfach mal so erwähnt. Lieber zu oft, als zu wenig :)
@Monacum das passt schon so. In der Syno Docker UI wird Volume1 nicht angezeigt. Auf der Shell aber schon.
 

loleke

Benutzer
Mitglied seit
09. Nov 2014
Beiträge
20
Punkte für Reaktionen
0
Punkte
1
vielen lieben dank an euch beiden!
 

Monacum

Benutzer
Sehr erfahren
Maintainer
Mitglied seit
03. Jan 2022
Beiträge
2.086
Punkte für Reaktionen
929
Punkte
204
Jap. Wenn es damit funzt, dann siehts eigentlich gut aus.
Externe Datensicherung nicht vergessen! Einfach mal so erwähnt. Lieber zu oft, als zu wenig :)
@Monacum das passt schon so. In der Syno Docker UI wird Volume1 nicht angezeigt. Auf der Shell aber schon.
Ja, war mir nach dem Beitrag nicht mehr so sicher, hab nachgeschaut und festgestellt, dass docker allein reicht. Danke für dein wachsames Auge um die Uhrzeit 😉
 
  • Like
Reaktionen: plang.pl

plang.pl

Benutzer
Contributor
Sehr erfahren
Maintainer
Mitglied seit
28. Okt 2020
Beiträge
14.414
Punkte für Reaktionen
5.033
Punkte
544
Kein Ding.
Lag dann wahrscheinlich echt an deinem Mount von /config. Oder so ähnlich. So langsam lässt auch meine Konzentration nach 🥴:ROFLMAO:
Wahrscheinlich liegt in dem Containerpfad die jar-Datei, die er nicht gefunden hat.
 


 

Kaffeautomat

Wenn du das Forum hilfreich findest oder uns unterstützen möchtest, dann gib uns doch einfach einen Kaffee aus.

Als Dankeschön schalten wir deinen Account werbefrei.

:coffee:

Hier gehts zum Kaffeeautomat 

 
 
  AdBlocker gefunden!

Du bist nicht hier, um Support für Adblocker zu erhalten. Dein Adblocker funktioniert bereits ;-)

Klar machen Adblocker einen guten Job, aber sie blockieren auch nützliche Funktionen.

Das Forum wird mit hohem technischen, zeitlichen und finanziellen Aufwand kostenfrei zur Verfügung gestellt. Wir zeigen keine offensive Werbung und bemühen uns um eine dezente Integration.

Bitte unterstütze dieses Forum, in dem du deinen Adblocker für diese Seite deaktivierst.

Du kannst uns auch über unseren Kaffeautomat einen Kaffe ausgeben oder ein PUR Abo abschließen und das Forum so werbefrei nutzen.

Vielen Dank für Deine Unterstützung!