curl server certificate verification failure while deploying Shiny app on RStudio Connect












0















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?










share|improve this question























  • I assume the usual options(RCurlOptions = list(ssl.verifypeer = FALSE)) didn't work too?

    – Nutle
    Nov 22 '18 at 15:16











  • Or set_config( config( ssl.verifypeer = 0L ) )

    – Nutle
    Nov 22 '18 at 15:17











  • @Nutle no, these didn't work either.

    – Dhiraj
    Nov 22 '18 at 16:39
















0















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?










share|improve this question























  • I assume the usual options(RCurlOptions = list(ssl.verifypeer = FALSE)) didn't work too?

    – Nutle
    Nov 22 '18 at 15:16











  • Or set_config( config( ssl.verifypeer = 0L ) )

    – Nutle
    Nov 22 '18 at 15:17











  • @Nutle no, these didn't work either.

    – Dhiraj
    Nov 22 '18 at 16:39














0












0








0








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?










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 22 '18 at 14:57









DhirajDhiraj

618416




618416













  • I assume the usual options(RCurlOptions = list(ssl.verifypeer = FALSE)) didn't work too?

    – Nutle
    Nov 22 '18 at 15:16











  • Or set_config( config( ssl.verifypeer = 0L ) )

    – Nutle
    Nov 22 '18 at 15:17











  • @Nutle no, these didn't work either.

    – Dhiraj
    Nov 22 '18 at 16:39



















  • I assume the usual options(RCurlOptions = list(ssl.verifypeer = FALSE)) didn't work too?

    – Nutle
    Nov 22 '18 at 15:16











  • Or set_config( config( ssl.verifypeer = 0L ) )

    – Nutle
    Nov 22 '18 at 15:17











  • @Nutle no, these didn't work either.

    – Dhiraj
    Nov 22 '18 at 16:39

















I assume the usual options(RCurlOptions = list(ssl.verifypeer = FALSE)) didn't work too?

– Nutle
Nov 22 '18 at 15:16





I assume the usual options(RCurlOptions = list(ssl.verifypeer = FALSE)) didn't work too?

– Nutle
Nov 22 '18 at 15:16













Or set_config( config( ssl.verifypeer = 0L ) )

– Nutle
Nov 22 '18 at 15:17





Or set_config( config( ssl.verifypeer = 0L ) )

– Nutle
Nov 22 '18 at 15:17













@Nutle no, these didn't work either.

– Dhiraj
Nov 22 '18 at 16:39





@Nutle no, these didn't work either.

– Dhiraj
Nov 22 '18 at 16:39












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















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

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Feedback on college project

Futebolista

Albești (Vaslui)