无法在AWS Ubuntu实例上运行Shiny应用程序。 xdg-open:没有可用于打开的方法' http://127.0.0.1:3572'

时间:2016-11-04 15:16:37

标签: r linux amazon-web-services ubuntu

我尝试运行一个在我的本地Mac上完美运行的闪亮应用。我将所有文件发送到/ srv / shiny-server下的AWS的ubuntu实例。我尝试在R中启动它:

  

库(有光泽)

     

runApp()

并收到此错误:

聆听http://127.0.0.1:3572

/ usr / bin / xdg-open:771:/ usr / bin / xdg-open:www-browser:not found

/ usr / bin / xdg-open:771:/ usr / bin / xdg-open:links2:not found

/ usr / bin / xdg-open:771:/ usr / bin / xdg-open:elinks:not found

/ usr / bin / xdg-open:771:/ usr / bin / xdg-open:links:not found

/ usr / bin / xdg-open:771:/ usr / bin / xdg-open:lynx:not found

/ usr / bin / xdg-open:771:/ usr / bin / xdg-open:w3m:not found

xdg-open:没有可用于打开的方法' http://127.0.0.1:3572'

看起来像是一些系统文件。我还没有看到任何与此类系统文件相关的内容。知道怎么处理吗?

1 个答案:

答案 0 :(得分:5)

试试这个:

runApp(launch.browser = FALSE)

使用此参数,Shiny将不会在主机上启动浏览器。