-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaunch_rstudio.sh
92 lines (75 loc) · 3.43 KB
/
launch_rstudio.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#!/bin/bash
#SBATCH --job-name=rstudio
#SBATCH --ntasks=12
#SBATCH --error=logs/err.txt
#SBATCH --output=logs/out.txt
#SBATCH --mem=60GB
#SBATCH --nodes=1
#SBATCH --time=09:00
#SBATCH --partition=amilan
module load singularity/3.7.4
mkdir -p logs
# path to directory on HPC for persistant storage of R packages
USER_R_LIB=/projects/${USER}/R/{project_name}
# What local port to use
LOCAL_PORT=8787
# path to sif file on HPC
SINGULARITY_IMAGE="single_cell.sif"
# add options for singularity exec
# e.g. "--bind /path/to/some/other/user/directory"
SINGULARITY_EXEC_OPTS=$1
max_n_cores=$(grep processor /proc/cpuinfo | wc -l)
# customize --output path as appropriate (to a directory readable only by the user!)
# Create temporary directory to be populated with directories to bind-mount in the container
# where writable file systems are necessary. Adjust path as appropriate for your computing environment.
workdir=$(python -c 'import tempfile; print(tempfile.mkdtemp())')
mkdir -p -m 700 ${workdir}/run ${workdir}/tmp ${workdir}/var/lib/rstudio-server
cat > ${workdir}/database.conf <<END
provider=sqlite
directory=/var/lib/rstudio-server
END
# Set OMP_NUM_THREADS to prevent OpenBLAS (and any other OpenMP-enhanced
# libraries used by R) from spawning more threads than the number of processors
# allocated to the job.
#
# Set R_LIBS_USER to a path specific to rocker/rstudio to avoid conflicts with
# personal libraries from any R installation in the host environment
cat > ${workdir}/rsession.sh <<END
#!/bin/sh
export OMP_NUM_THREADS=${max_n_cores}
export R_LIBS_USER=$USER_R_LIB
exec /usr/lib/rstudio-server/bin/rsession "\${@}"
END
chmod +x ${workdir}/rsession.sh
export SINGULARITY_BIND="${workdir}/run:/run,${workdir}/tmp:/tmp,${workdir}/database.conf:/etc/rstudio/database.conf,${workdir}/rsession.sh:/etc/rstudio/rsession.sh,${workdir}/var/lib/rstudio-server:/var/lib/rstudio-server"
# Do not suspend idle sessions.
# Alternative to setting session-timeout-minutes=0 in /etc/rstudio/rsession.conf
# https://github.com/rstudio/rstudio/blob/v1.4.1106/src/cpp/server/ServerSessionManager.cpp#L126
export SINGULARITYENV_RSTUDIO_SESSION_TIMEOUT=0
export SINGULARITYENV_USER=$(id -un)
export SINGULARITYENV_PASSWORD=$(openssl rand -base64 15)
# get unused socket per https://unix.stackexchange.com/a/132524
# tiny race condition between the python & singularity commands
readonly PORT=$(python -c 'import socket; s=socket.socket(); s.bind(("", 0)); print(s.getsockname()[1]); s.close()')
cat 1>&2 <<END
1. SSH tunnel from your workstation using the following command:
ssh -N -L $LOCAL_PORT:${HOSTNAME}:${PORT} ${SINGULARITYENV_USER}@LOGIN-HOST
and point your web browser to http://localhost:$LOCAL_PORT
2. log in to RStudio Server using the following credentials:
user: ${SINGULARITYENV_USER}
password: ${SINGULARITYENV_PASSWORD}
When done using RStudio Server, terminate the job by:
1. Exit the RStudio Session ("power" button in the top right corner of the RStudio window)
2. Issue the following command on the login node:
bkill ${LSB_JOBID}
END
singularity exec $SINGULARITY_EXEC_OPTS --bind /beevol/home/nicholas \
--cleanenv $SINGULARITY_IMAGE \
rserver --www-port ${PORT} \
--server-user ${USER} \
--auth-none=0 \
--auth-pam-helper-path=pam-helper \
--auth-stay-signed-in-days=30 \
--auth-timeout-minutes=0 \
--rsession-path=/etc/rstudio/rsession.sh
printf 'rserver exited' 1>&2