AcademySoftwareFoundation / OpenCue

A render management system you can deploy for visual effects and animation productions.
https://www.opencue.io
Apache License 2.0
824 stars 198 forks source link

/opt/opencue/install_and_run.sh: No such file or directory #740

Open dhasl002 opened 4 years ago

dhasl002 commented 4 years ago

Describe the bug According to the June 8, 2020 meeting, "RQD startup command from GCP solution is out of date, need to replace with the standard rqd command as the earlier install_and_run.sh script does not exist."

How can I fix this?

https://github.com/AcademySoftwareFoundation/OpenCue/blob/1b381fd6360d56bff26776f7741d2fa8375e0f11/tsc/gsoc/2020-06-08.md

To Reproduce Follow google cloud tutuorial: https://cloud.google.com/solutions/creating-a-render-farm-on-gcp-using-opencue#overview_of_cuegui

Version Number Latest

dhasl002 commented 4 years ago

Replace

/opt/opencue/install_and_run.sh

with

cd /opt/opencue/rqd/
python setup.py install
python ./rqd/
shiva-kannan commented 4 years ago

Hey @dhasl002 ! Yes, just replacing /opt/opencue/install_and_run.sh with rqd should work too.

When I was following that guide I hit a bunch of other setup related issues. Here is a list of them you can refer to, to get it up and running :

  1. Cloning this specific branch wasn't necessary for me. I just used the latest version of OpenCue. Not sure why it was mentioned here.

  2. This asks to copy only the V1/V2/V3 files but we would need all the other files too. The command is fine though.

  3. We need to import V4/V5/V6 too into the databases for the submission to work.

  4. This step failed for me. Had to add a pip install --upgrade pip for it to work.

  5. This step, "curl" kept timing out so I added a "wget" installation and used that for the downloading blender step. This would be a change to the Dockerfile in this repo.

  6. This gRPC compiling protos step, I used the instructions on the actual opencue dev docs.

Hope this helps. Thanks!