curl server certificate verification failure while deploying Shiny app on RStudio Connect
up vote
0
down vote
favorite
I am trying to deploy a Shiny application on a local server using RStudio Connect. One of the packages that I am using in the app has been installed from GitHub (https://github.com/rasmusab/fullcalendar). The deployment of the app fails when it is trying to install this package with a curl: (60) server certificate verification failed error.
I have tried export GIT_SSL_NO_VERIFY=1 as well as git config --global http.sslverify false as given here. But the error persists during deployment. What else can I try here?
r ssl curl shiny rstudio
add a comment |
up vote
0
down vote
favorite
I am trying to deploy a Shiny application on a local server using RStudio Connect. One of the packages that I am using in the app has been installed from GitHub (https://github.com/rasmusab/fullcalendar). The deployment of the app fails when it is trying to install this package with a curl: (60) server certificate verification failed error.
I have tried export GIT_SSL_NO_VERIFY=1 as well as git config --global http.sslverify false as given here. But the error persists during deployment. What else can I try here?
r ssl curl shiny rstudio
I assume the usualoptions(RCurlOptions = list(ssl.verifypeer = FALSE))didn't work too?
– Nutle
Nov 22 at 15:16
Orset_config( config( ssl.verifypeer = 0L ) )
– Nutle
Nov 22 at 15:17
@Nutle no, these didn't work either.
– Dhiraj
Nov 22 at 16:39
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am trying to deploy a Shiny application on a local server using RStudio Connect. One of the packages that I am using in the app has been installed from GitHub (https://github.com/rasmusab/fullcalendar). The deployment of the app fails when it is trying to install this package with a curl: (60) server certificate verification failed error.
I have tried export GIT_SSL_NO_VERIFY=1 as well as git config --global http.sslverify false as given here. But the error persists during deployment. What else can I try here?
r ssl curl shiny rstudio
I am trying to deploy a Shiny application on a local server using RStudio Connect. One of the packages that I am using in the app has been installed from GitHub (https://github.com/rasmusab/fullcalendar). The deployment of the app fails when it is trying to install this package with a curl: (60) server certificate verification failed error.
I have tried export GIT_SSL_NO_VERIFY=1 as well as git config --global http.sslverify false as given here. But the error persists during deployment. What else can I try here?
r ssl curl shiny rstudio
r ssl curl shiny rstudio
asked Nov 22 at 14:57
Dhiraj
569316
569316
I assume the usualoptions(RCurlOptions = list(ssl.verifypeer = FALSE))didn't work too?
– Nutle
Nov 22 at 15:16
Orset_config( config( ssl.verifypeer = 0L ) )
– Nutle
Nov 22 at 15:17
@Nutle no, these didn't work either.
– Dhiraj
Nov 22 at 16:39
add a comment |
I assume the usualoptions(RCurlOptions = list(ssl.verifypeer = FALSE))didn't work too?
– Nutle
Nov 22 at 15:16
Orset_config( config( ssl.verifypeer = 0L ) )
– Nutle
Nov 22 at 15:17
@Nutle no, these didn't work either.
– Dhiraj
Nov 22 at 16:39
I assume the usual
options(RCurlOptions = list(ssl.verifypeer = FALSE)) didn't work too?– Nutle
Nov 22 at 15:16
I assume the usual
options(RCurlOptions = list(ssl.verifypeer = FALSE)) didn't work too?– Nutle
Nov 22 at 15:16
Or
set_config( config( ssl.verifypeer = 0L ) ) – Nutle
Nov 22 at 15:17
Or
set_config( config( ssl.verifypeer = 0L ) ) – Nutle
Nov 22 at 15:17
@Nutle no, these didn't work either.
– Dhiraj
Nov 22 at 16:39
@Nutle no, these didn't work either.
– Dhiraj
Nov 22 at 16:39
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53433606%2fcurl-server-certificate-verification-failure-while-deploying-shiny-app-on-rstudi%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I assume the usual
options(RCurlOptions = list(ssl.verifypeer = FALSE))didn't work too?– Nutle
Nov 22 at 15:16
Or
set_config( config( ssl.verifypeer = 0L ) )– Nutle
Nov 22 at 15:17
@Nutle no, these didn't work either.
– Dhiraj
Nov 22 at 16:39