View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0006541 | SymmetricDS | Bug | public | 2024-07-25 06:44 | 2024-07-31 17:16 |
Reporter | cybafelo | Assigned To | |||
Priority | normal | ||||
Status | closed | Resolution | no change required | ||
Product Version | 3.15.7 | ||||
Summary | 0006541: 404 No static resource . | ||||
Description | I'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 Reproduce | Dockerfile : 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 | ||||
Tags | No tags attached. | ||||
|
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/ |