Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titleConnecting via RStudio Server

This option opens the RStudio Server integrated development environment, where you can develop your R and R Shiny code.

  • Clicking “Open RStudio”, will open the login page for RStudio Server. Login using your normal university username and password.

    r_shiny_1a.png
  • After logging in, use the RStudio Server interface to develop your R software.

r_shiny_1b.pngImage Removed
  • r_shiny_1b.pngImage Added
  • To edit the code of the Shiny web app, in the RStudio Server interface, use the “Files” panel (bottom right of screen) to browse to the Shiny app source file (for example:
    /srv/shiny-server/sample-apps/hello/server.R)

Info

Note: If you have an existing R Shiny web app that you want to copy into RSSS, please follow the below instructions “How do I upload my existing R Shiny web app to my RStudio and Shiny Server?

r_shiny_1c.png
Expand
titleConnecting to the R Shiny Web App

This option opens the R Shiny Web App (“web front-end”). It is the end-user facing interface of R Shiny.

Click the second button, “View Shiny Site”, to connect to the Shiny Server interactive data web app.

r_shiny_2a.png

Expand
titleConnecting to the RSSS Linux Virtual Machine

This option opens the back-end Linux Virtual Machine on which your RStudio Server is running. It is useful if you need to access the file system directly, or need to do administrative work on the Linux command line.

  1. Click the third button, “Connect to Linux Server”, to open a FastX window to log into the Ubuntu Linux operating system of the RSSS. Login using your normal university username and password.

    r_shiny_3a.png
  2. Click the “+” button to launch a new session to log into the RSSS Ubuntu Linux file system.

    r_shiny_3b.pngImage Modified
  1. For the new session, you can choose from the GNOME graphical user interface, the Unity graphical user interface, and xterm command line terminal. For most users, Unity is the best option. Command line access is available inside Unity via the built-in Terminal app.

    r_shiny_3c.pngImage Modified

How do I upload my existing R Shiny web app to my RStudio and Shiny Server?

...

  1. Verify that the R Studio and Shiny Server web app access is working, by visiting the Shiny site (see above “Connecting to the R Shiny Web App”). You should see the “Welcome to Shiny Server!” default Shiny demo app.

  2. Open RStudio Server (see above “Connecting via RStudio Server”).

  3. In the “Files” panel at the bottom right of RStudio, check that the current working folder is /srv/shiny-server. This is the default folder that Shiny uses to store web app files.

    r_shiny_4a.pngImage Modified
  1. If the current working folder is /srv/shiny-server, continue to Step 5. Otherwise, click “…” on the far right of the panel to change the working folder. Enter /srv/shiny-server when prompted for a new Path to folder.

    r_shiny_4b.pngImage Modified
  1. Delete the files of the “Welcome to Shiny Server!” demo app:

    1. Select the checkboxes in front of index.html and sample-apps folder.

    2. Click the “Delete” icon. When prompted, confirm that you want to delete the selected files.

...

    1. r_shiny_4c.pngImage Added
  1. Upload your existing R Shiny web app files into the same folder (/srv/shiny-server).

    r_shiny_4d.pngImage Modified
  1. The uploaded Shiny app will now be hosted on your RStudio and Shiny Server. You can verify this by visiting the Shiny site. When you do so you should see your web app rather than the default welcome site.

...