Renewing your Posit Workbench (previously RStudio Server Pro) license is quite easy. After you have purchased a license renewal, you will receive an email with the license key. At that point, you can activate it following the steps below, depending on whether your license is online or offline:
Online license
For online licenses, in most cases, no further action is necessary. However, if you would like to force the server to pick up the new expiration date immediately, you can run the following steps on the server.
$ sudo rstudio-server license-manager deactivate
$ sudo rstudio-server license-manager activate <product-key>
$ sudo rstudio-server restart
Then, to check the status of the license, run this command:
$ sudo rstudio-server license-manager status
For floating licenses, you will need to run the following steps to renew on the floating license server, after you have stopped it:
$ sudo rsp-license-server deactivate
$ sudo rsp-license-server activate <product-key>
$ sudo rsp-license-server start
Then, to check the floating license activation, run this command:
$ sudo rsp-license-server activation-status
Offline license
For offline licenses, you must deactivate and reactivate your server to ensure that it picks up the new expiration date. You can do this by following the steps below:
- On your server run the following:
$ sudo rstudio-server license-manager deactivate-offline <product-key>
- Enter the output in the app located here. This will deactivate the license on our end.
- On your server run the following:
$ sudo rstudio-server license-manager activate-offline-request <product-key>
- Enter the output in the app located here. The app will respond with some activation XML, which you can use in the next step.
- Paste that code into an activation file on your server, then run:
$ sudo rstudio-server license-manager activate-offline <full/path/to/activation-file>
- Restart the server with this command:
$ sudo rstudio-server restart
Then, to check the status of the license, run this command:
$ sudo rstudio-server license-manager status
If the app is not working for any reason, please email us at support@rstudio.com and let us know and we can walk you through the renewal manually.
For additional information, please see this section of the admin guide.
For more details on floating licensing, please see this part of the admin guide. The commands for offline activation and deactivation of a floating license server are found in our offline activation app.
Comments