View Issue Details

IDProjectCategoryView StatusLast Update
0006541SymmetricDSBugpublic2024-07-31 17:16
Reportercybafelo Assigned To 
Prioritynormal 
Status closedResolutionno change required 
Product Version3.15.7 
Summary0006541: 404 No static resource .
DescriptionI'm using docker to start the symmetric ds using a fairly straightforward Dockerfile (just FROM ...) and docker-compose exposing port 31415. When i navigate to localhost:31415 i simply get the error message: 404 No static resource .

I am sure somewhere i saw a 'web interface' or a picture of a web interface. Does symmetric have a web interface? is it because its running in docker that i get this error? Do i need to do something to enable the web interface?

I don't know enough about java / tomcat to run this locally and test.
Steps To ReproduceDockerfile :

FROM jumpmind/symmetricds:latest

docker-compose.yml:

services:

  symmetric:
    container_name: ${CONTAINER_NAME}
    image: ${IMAGE_NAME}
    build:
      dockerfile: ${DOCKERFILE}
      context: .
    restart: unless-stopped
    env_file:
      - ${ENV_FILE}
    volumes:
      - engines:/opt/symmetric-ds/engines
      - tmp:/opt/symmetric-ds/tmp
      - conf:/opt/symmetric-ds/conf
      - security:/opt/symmetric-ds/security
      - ./symmetric-server.properties:/opt/symmetric-ds/conf/symmetric-server.properties
      - ./corp-000.properties:/opt/symmetric-ds/engines/corp-000.properties
      - ./store-001.properties:/opt/symmetric-ds/engines/store-001.properties
    ports:
      - "${EXPOSED_PORT}:${INTERNAL_PORT}"
    networks:
      - network

networks:
  network:
    name: ${NETWORK_DOMAIN}
    external: true

volumes:
  engines:
    name: ${VOLUME_NAME_ENGINES}
  tmp:
    name: ${VOLUME_NAME_TMP}
  conf:
    name: ${VOLUME_NAME_CONF}
  security:
    name: ${VOLUME_NAME_SECURITY}

.env file:

ENV_FILE=.env
CONTAINER_NAME=symmetric
IMAGE_NAME=xxx
DOCKERFILE=Dockerfile
NETWORK_DOMAIN=xxx
EXPOSED_PORT=31415
INTERNAL_PORT=31415
VOLUME_NAME_ENGINES=xxx
VOLUME_NAME_TMP=xxx
VOLUME_NAME_CONF=xxx
VOLUME_NAME_SECURITY=xxx
TagsNo tags attached.

Activities

jvanmeter

2024-07-31 17:16

developer   ~0002485

This is working as designed. There is no Web Interface in the open source SymmetricDS. In the future, questions like these should be asked on the forums. Below is a link to that space:
https://sourceforge.net/p/symmetricds/discussion/739236/

Issue History

Date Modified Username Field Change
2024-07-25 06:44 cybafelo New Issue
2024-07-31 17:16 jvanmeter Status new => closed
2024-07-31 17:16 jvanmeter Resolution open => no change required
2024-07-31 17:16 jvanmeter Note Added: 0002485