-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Notes on installation on varsdemo #8
Comments
On clean install, all micro services started fine except for https://github.com/mbari-org/beholder . The |
Conda set up: curl https://repo.anaconda.com/miniconda/Miniconda3-py39_4.12.0-Linux-x86_64.sh -o Minconda3.sh
./Miniconda3.sh
# Logout and login to new shell
conda config --set auto_activate_base false
# Logout and login to new shell
conda activate base
cd m3-quickstart
pip install -r bin/etc/python/requirements.txt |
Scala-cli needs to be installed. This is not mentioned in the README. |
Raziel is returning the raw endpoints, not the ones via the API gateway. They should all be proxied. This is just a misconfiguration in the docker-env.sh. This needs to be addressed in the future. For this demo though, I'm submitting a request to open the following ports:
|
Raziel docs at http://varsdemo.mbari.org:8400/docs/ |
I had to edit -export HOST_IP=$(ifconfig | grep -Eo 'inet (addr:)?([0-9]*\.){3}[0-9]*' | grep -Eo '([0-9]*\.){3}[0-9]*' | grep -v '127.0.0.1' | head -1)
+export HOST_IP="varsdemo.mbari.org"
|
Getting an error when trying to update and observation:
|
The above error is related to the postgres:14 image. It pulled Postgres 14.5. DARC is running 14.2 and not running into that issue. Modifying - image: postgres:14
+ image: postgres:14.2 I think the long term fix is to run this against SQL Server and avoid posgres' quirks |
Had to modify the +Class.forName("org.postgresql.Driver") That was not the case previously. May need to look into Scala-cli to see if it had changes in when libraries are included in scripts. |
Note that gradle does not yet support Java 19. Building the VARS Query app will fail on 19, use 17 (LTS) instead. |
Ran the following and it worked AOK: ./vars_register_medias_on_web.sh Ventana "Ventana 4003" "http://varsdemo.mbari.org/media/M3/proxy/Ventana/2017/03/4003/"
./vars_register_medias_on_web.sh Ventana "Ventana 4003" "http://varsdemo.mbari.org/media/M3/mezzanine/Ventana/2017/03/4003/" |
There's no vars_build.bat file in the project to build the windows versions of vars-query and vars-kb. doh! |
varsdemo is a temporary server for the upcoming Marine Imaging Workshop. Here's some notes on doing a clean install on the server to help improve the documentation
The text was updated successfully, but these errors were encountered: