Login failed #254
Unanswered
MichaelP-FP
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I get following error. Tried octoprint/octoprint:bleeding and edge, as well as several other configs I found around, I still get following error when opening octoprint. Hardware: Raspberry Pi4B.
Loading failed
Passive login failed. Please check your browser's error console and octoprint.log for possible reasons.Also make sure that the server is actually running by reloading this page.
version: '2'
volumes:
octoprint-1:
octoprint-2:
services:
ghost5:
image: octoprint/octoprint
ports:
#Port to reach octoprint that will control PRINTER #1
- 5001:80
devices:
#Printer that belongs to ghost5 container (PRINTER #1)
- /dev/ttyUSB0:/dev/ttyUSB0
#WebCam that belongs to ghost5 container (WEBCAM #1)
- /dev/video0:/dev/video0
volumes:
- octoprint-1:/home/octoprint/.octoprint
environment:
#Define the quality of the stream from the WEBCAM #1
- MJPG_STREAMER_INPUT=-n -r 1280x720 -f 30
#Enable the stream of the WEBCAM #1
- ENABLE_MJPG_STREAMER=true
restart: always
prusa:
image: octoprint/octoprint
ports:
#Port to reach octoprint that will control PRINTER #2
- 5002:80
devices:
#Printer that belongs to prusa container (PRINTER #2)
- /dev/ttyACM0:/dev/ttyACM0
#WebCam that belongs to prusa container (WEBCAM #2)
- /dev/video2:/dev/video0
volumes:
- octoprint-2:/home/octoprint/.octoprint
environment:
#Define the quality of the stream from the WEBCAM #2
- MJPG_STREAMER_INPUT=-n -r 1280x720 -f 30
#Enable the stream of the WEBCAM #2
- ENABLE_MJPG_STREAMER=true
restart: always
Beta Was this translation helpful? Give feedback.
All reactions