Thanks @Tamino. The topic Cryosparc not starting looks similar to your situation. Assuming that the --standalone
installation was disrupted just after the installation of the cryosparc_master/
package, you may consider
- adding the line
to the fileexport NO_PROXY="${CRYOSPARC_MASTER_HOSTNAME},localhost,127.0.0.1"
somewhere below the definition of/home/cemkguest/software/cryosparc/cryosparc_master/config.sh
CRYOSPARC_MASTER_HOSTNAME
- restarting CryoSPARC.
The following steps would have been performed automatically in case of a smooth
--standalone
installation. - creating the first user
- installing the
cryosparc_worker/
package - adding the line
to the fileexport NO_PROXY="phobos,localhost,127.0.0.1"
(In case the master hostname changes fromcryosparc_worker/config.sh
phobos
in the future,phobos
needs to be changed accordingly in theNO_PROXY
definition.) - connecting the worker component with a command like
where thecryosparc_worker/bin/cryosparcw connect --master phobos --worker phobos --port 99999 --ssdpath /path/to/cache
--port
parameter needs to be changed from the nonsensical 99999 value to theCRYOSPARC_BASE_PORT
value inside
and the/home/cemkguest/software/cryosparc/cryosparc_master/config.sh
--ssdpath
parameter points to the actual path to be used for particle caching (or is replaced altogether with--nossd
)