[POTENTIAL BUG] - Unable to run Quickstart demo #34
-
DescriptionI tried to run the quickstart in Ubuntu 24.04, but when doing so, I encountered an error similar to the one reported in issue 26 [BUG - Unable to start the demo], which is currently closed. Looking at the logs, I noticed that from the file Even after fixing this (I renamed the script to match, so it became The error seems related to Linux cgroups and a Java NullPointerException: Thanks for taking a look at this! |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments
-
|
Hey! Thanks for reaching out, I suspect this is a docker version issue If you pull the most recent commit you'll see the updated casing fix (good catch), i've also added a pre-deployment check script that you can run with: You'll get some basic feedback on whether you are set up for success (docker version + resources available) Let me know how it goes, if pre-deployment is successful and the problem persists I can test further in Ubuntu 24.04 to see if i can replicate Thanks again for reaching out |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
|
Great, ok been poking around and i think i've identified the issue, working on updating the maestro image now, that should fix it. If interested i do have a more lightweight demo branch available: https://github.com/overture-stack/prelude/tree/demo/exploration I'll update here once i make the commit |
Beta Was this translation helpful? Give feedback.
-
|
K, I've updated the branch to use our newer version of maestro, it's written in typescript so will resolve the compatibility issue with JAVA. Thanks for catching this, i'm seeing a few other things i'd like to update here, i'll spend some time next week updating the quickstart and the relevant guides, in the meantime i'll point you to the simpler/newer demo branch . I'll also extend an invite to schedule a chat, always happy to hear how people are thinking about using our software and helping them get started. If interested shoot me an email at contact@overture.bio and we can arrange a zoom call. Of course let me know if this resolves your issue, Cheers! |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.




Hi, Mitchell:
The quickstart branch is working perfectly now, thank you very much!
I also tried testing the demo branch, but I ran into a couple of issues, which I’m sharing here in case it helps.
First, I got a "Bad substitution" error. The Makefile uses parameter expansion like ${variable:0:64}, which only works in bash, but make was using /bin/sh by default. I tried adding SHELL := /bin/bash as the first line of the Makefile, and that seemed to work!
Then I hit an "exec format error" during the Docker build. The docker-compose.yml had platform: linux/arm64/v8 for the stage service but linux/amd64 for everything else. Since I'm on x86_64, I changed stage to linux/amd64 to match, and th…