Our users would like to use rstudio server on our HPC cluster. Running as a systemd service everything works fine including authentication against AD.
However, we need to run within our job scheduler environment to ensure users rserver sessions do not cause conflicting memory requirements with other jobs.
I can start the rserver session from within the job script however the authentication is no longer working - what do i need to do to get this working?
I'm starting rserver as follows
module load R
myR=$(which R)
/usr/lib/rstudio-server/bin/rserver --rsession-which-r ${myR}
The rserver process starts and login gui page appears but get the following when entering a users auth details which work when starting rsudio as a service
Error: Incorrect or invalid username/password
Thanks
W