Linux network issues

 
 
 
Posted by:it.accounts@pukekopictures.com
Data created:16 March 2022

Hi, 

 

I'm trying to get Ornatrix installed on a network share and then loaded via a launcher script for ease of updating and maintenance. 

The idea is that when installing a new build, I can run the .run file, move the extracted files into a folder with the version number, then update a variable in the launcher and we are good to go. 

However when loading maya I'm getting the following error:

Plug-in, "Ornatrix" was not found on MAYA_PLUG_IN_PATH

The launcher script is here below, and as far as I can tell from the readme included in the installer, I've specified all the paths. Is there anything I've missed or could try?

 

#!/bin/bash

#

export QT_COMPRESS_TABLET_EVENTS=1

echo "Launching Maya 2022v3"

echo ". . . . . . . . . . . . . . " | pv -qL 12

# Setup the Redshift license variable

export redshift_LICENSE=XXXX@XXX.XXX.XXX.XXX

#Set up Ornatrix

ORNATRIX_VERSION="3.3.5"

export EPHERE_MONO_DIR="/puk/apps/Ornatrix/$ORNATRIX_VERSION/Apps/Ephere/Mono64"

export ORNATRIX_GROOMS_DIR="/puk/apps/Ornatrix/$ORNATRIX_VERSION/Data/Ephere/OrnatrixMaya2022/Grooms"

export ORNATRIX_PRESET_DIR="/puk/apps/Ornatrix/$ORNATRIX_VERSION/Data/Ephere/OrnatrixMaya2022/CurvePresets"

export ORNATRIX_SCRIPTS_DIR="/puk/apps/Ornatrix/$ORNATRIX_VERSION/Data/Ephere/OrnatrixMaya2022/Scripts"

export MAYA_MODULE_PATH="$MAYA_MODULE_PATH:/puk/apps/Ornatrix/$ORNATRIX_VERSION/Module/"

 

exec /puk/apps/autodesk/maya-2022v3/bin/maya ${@}  

 

Hello,

Sorry for the late reply, I missed this post. 

I'm not a LInux user but I will ask someone else to take a look. 

Jeordanis Figuereo (Product Designer. EPHERE Inc.)

The script looks correct to me, I'm trying to spot some defect, but can't.
I assume the .run file was extracted into the /puk/apps/Ornatrix/3.3.5 directory

You may verify that MAYA_MODULE_PATH is correct in Maya, use "getenv MAYA_MODULE_PATH" in Script Editor, check that /puk/apps/Ornatrix/3.3.5/Module is indeed included.

Also check in Script Editor the value of MAYA_PLUG_IN_PATH, it should contain /puk/apps/Ornatrix/3.3.5/Module/OrnatrixMaya2022/plug-ins

Ivan Kolev (Software Developer, EPHERE Inc.)

E-mail: ivan.kolev at ephere dot com

Discord: ikolev

Hi Ivan, 

 

Thanks for that. I eventually found why it wasn't seeing the module path and got it to load.

Now on the next problem, the crashing. I'll start a seperate thread for that. 

Thanks!