-
Relatively naive question here. How do I actually launch the app online? Results in 'unable to connect' on standard web page. What am I not configuring correctly? -Rick Details: installed at /usr/local/nextPYP with rwx permissions for nextpyp_user (non-root) By all accounts the instance is started: During install, I have tried using the default domain name and 'localhost': The config.toml file: (ignore the ' preceding commented (#) sections; added here for visualization purposes only) [pyp] '# fast storage for temporary files, ideally local to the compute node '# local directories '#[slurm] I've tried using the config file with and without this section commented '# user account for the SLURM login node '# hostname for the SLURM login node '# maximum memory (in GiB) available on SLURM compute nodes '# maximum CPU cores available on SLURM compute nodes [web] '# storage space for files shared between the web server and the SLURM cluster '# URL of the web server, from a SLURM compute node's point of view '# authorization '# directories for workflow files |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
Try connecting to |
Beta Was this translation helpful? Give feedback.
-
@rickhooy It does run on 8080. Sorry Alberto, I had a typo when searching for |
Beta Was this translation helpful? Give feedback.
Web app is now finally opened. The logs did lead to the eventual problem.
/usr/local/nextPYP/local/logs/micromon <-- this file didn't actually exist
/usr/local/nextPYP/local/logs$ ls
total 8.0K
-rw-rw-r-- 1 nextpyp_user nextpyp_user 22 Oct 28 15:16 hostprocessor
-rw-rw-r-- 1 nextpyp_user nextpyp_user 147 Oct 28 15:16 init.log
$ cat hostprocessor
HostProcessor started
$ cat init.log
nextPYP initializing container ...
local directory is /usr/local/nextPYP/local
/opt/micromon/init.sh: line 20: /tmp/mongod.conf: Permission denied
Changed ownership of /tmp/mongod.conf to nextpyp_user
Now web app opens on localhost:8080
So my issue mostly stemmed from nextpyp read/write access to root directory…