Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

In this page:



Overview

As you work in RStudio, occasionally you might need to reset RStudio's state. This is useful if, for example, your RStudio cache is corrupted and you can't start an RStudio instance.

RStudio and R store users' session information in several directories. Renaming those directories will reset the state of RStudio and often let you start RStudio again. The table below lists the directories and information stored by them. It is often sufficient to rename only the first 2 directories in the table (~/.rstudio and ~/.local/share/rstudio) in order to fix RStudio's corrupted cache.

Location of the directoriesInformation stored
~/.rstudio

All user settings, open files and tabs, as well as active and suspended sessions.

This folder was automatically created if you have used RStudio version 1.3 or older in the past. In IDAS, that corresponds to R version 3.6.1.

~/.local/share/rstudio

All open files and tabs, as well as active and suspended sessions.

This folder was automatically created if you have used RStudio version 1.4 or later. In IDAS, that corresponds to R versions 4.0.2 and 4.1.1.

~/.config/rstudio

All user settings (Global Options).

This folder was automatically created if you have used RStudio version 1.4 or later. In IDAS, that corresponds to R versions 4.0.2 and 4.1.1.

.RData (can be in various folders, depending on where you saved your .RData files in the past)R data and objects
.Rhistory (can be in various folders, depending on the location where you started RStudio in the past)R command history


Resetting RStudio

1. Log in to IDAS from https://notebooks.hpc.uiowa.edu/

2. Start a Terminal session in IDAS. There are 2 ways to do this:

    a) If you spawned an RStudio instance in IDAS: Click the "Terminal" tab, which is next to the "Console" tab in RStudio.

    

    b) If you spawned a Jupyter Hub instance in IDAS:

        - After logging in to IDAS from https://notebooks.hpc.uiowa.edu/, you will be at the Jupyter Hub tree page. 

        - In the upper right corner of the page, click New / Terminal to start a bash session:

        2020-01-21-new-button-terminal.png

3. In Terminal, use the "mv" Linux command to rename the necessary directories: 

    mv ~/.rstudio ~/.rstudio-old

    mv ~/.local/share/rstudio ~/.local/share/rstudio-old

4. Follow the steps here to restart your IDAS server. 

5. If RStudio still doesn't spawn, repeat steps 1 - 4, this time also renaming the following directories:

    mv ~/.config/rstudio ~/.config/rstudio-old

    mv .RData .RData-old

    mv .Rhistory .Rhistory-old

Note that .RData and .Rhistory might be in various locations, depending on where you saved your R data and where you started RStudio from in the past.

6. By renaming those directories, we created a backup of the RStudio's session information in case you need to revert to those "old" versions. Since those directories can be large and take up space, when you are sure that you no longer need the old versions, you can simply delete them.

Contact

If you have any questions or comments, please contact research-computing@uiowa.edu.


  • No labels