Questions tagged [shiny-server]

Shiny Server provides a platform on which you can host multiple Shiny applications on a single server, each with their own URL or port.

Shiny Server is a server program that makes Shiny applications available over the web.

Using Shiny Server, you can host multiple Shiny applications, as well as static web content, on a Linux server and make them available over the internet. You can specify what applications are available at what URL, or configure Shiny Server to let anyone with a user account on the server deploy their own Shiny applications.

1655 questions
5
votes
1 answer

observeEvent Shiny function used in a module does not work

I'm developing an app in which I use modules to display different tab's ui content. However it seems like the module does not communicate with the main (or parent) app. It displays the proper ui but is not able to execute the observeEvent function…
MaxPlank
  • 185
  • 2
  • 13
5
votes
2 answers

R Shiny Server Segmentation Fault

I have been getting the following a Segmentation Fault on my Shiny Server running on a Linux machine: -bash: line 1: 29254 Segmentation fault R --no-save --slave -f \/opt\/shiny-server\/R\/SockJSAdapter\.R " It started three days ago on an…
5
votes
1 answer

HTTPS for Shiny apps?

Any ideas how I can add HTTPS to Shiny apps? I came across a few guides below but not sure whether they are reliable or not. Adding Authentication to Shiny Server in 4 Simple Steps ADD AUTHENTICATION TO SHINY SERVER WITH NGINX Shiny https: Securing…
Run
  • 54,938
  • 169
  • 450
  • 748
5
votes
1 answer

Shiny server Connection closed. Info: {"type":"close","code":4503,"reason":"The application unexpectedly exited","wasClean":true}

I've encountered a problem with deploying my shiny app on linux Ubuntu 16.04 LTS. After I run sudo systemctl start shiny-server, and open up my browser heading to http://192.168..*:3838/StockVis/, the web page greys out in a second. I found some…
Jessie
  • 51
  • 5
5
votes
1 answer

Add/remove input fields dynamically by a button in shiny AND keep values

my question is a followup question on the following discussion: How to add/remove input fields dynamically by a button in shiny I want a be able to add/remove dynamically input with action button on shiny app, but also when I add a new input I want…
G.D.
  • 170
  • 1
  • 8
5
votes
0 answers

Shiny Leaflet Map Popups Are Pulling the Wrong Data

For some reason, the popups assigned to the polygons on the Shiny leaflet app are pulling up the wrong information that should be assigned to the polygon. It seems that the Polygons have been placed on the map, then assigned the polygon attributes…
AlphaKevy
  • 187
  • 2
  • 14
5
votes
2 answers

Deploy packaged shiny app on shiny server

When having a shiny app set up like this for the shiny server +---/srv/shiny-server | +---shinyApp1 | +---server.R | +---ui.R all works fine. However, how can I do the same, when the above files (ui.R, server.R) are included in a…
Mark Heckmann
  • 10,943
  • 4
  • 56
  • 88
5
votes
2 answers

ShinyApp Google Login

I have a shinyapp and I want to enable certain features to the members who login to the app using google login. I am not able to implement the Google login and authentication process within my app using the GoogleAuthR package. Does anyone has an…
Sushanta Deb
  • 529
  • 8
  • 20
5
votes
2 answers

Error in library(shiny) : there is no package called 'shiny' ON WINDOWS

I developed a Shiny app that runs fine locally, but I get Error in library(shiny) : there is no package called 'shiny' when I try to publish to shinyapps.io. I have seen multiple responses about how to correct on Ubuntu, etc., but I am running R…
MarcVL
  • 59
  • 1
  • 2
5
votes
1 answer

Generate powerpoint slides with R Shiny using ReporteRs package

I have a R shiny code which makes various reports, word cloud, sentiment analysis and various other things. Now I want that by click of a button all these reports which are generated can be downloaded in one single shot and attached to ppt. So, for…
Rahul Agarwal
  • 4,034
  • 7
  • 27
  • 51
5
votes
3 answers

run shiny server as non-root

I installed shiny server in a virtual machine (ubuntu server 14.04.4 in VirtualBox) shiny-server --version Shiny Server v1.4.2.786 Node.js v0.10.40 All in all the server runs nicely and starts apps as intended. The only thing I'm missing and…
sargas
  • 538
  • 1
  • 5
  • 12
5
votes
0 answers

Pandoc document conversion failed with erro 127

I have a problem with RMarkDown-Scripts that are stored in the ~/ShinyApps folder of my Shiny server. The RMarkDown file fails to build in RStudio as well as in the web browser. The error message is always the same: Error: pandoc document conversion…
user212926
5
votes
2 answers

Shiny evaluates twice

I have a rather complex Shiny application and something weird happens: When I print out some of my intermediate steps the App makes, everything gets printed out twice. That means, everything gets evaluated etc. twice. I know without seeing the…
four-eyes
  • 10,740
  • 29
  • 111
  • 220
5
votes
1 answer

Track user activity in Shiny app

I have a shiny dashboard app which can be accessed by entering an email address in a text box. On successfully logging in I provide 3 tabs and a notification menu for each user. This pretty much works well. I want to however track the activity of…
mongofresher
  • 173
  • 1
  • 4
  • 10
5
votes
1 answer

Can shiny determine the use who logged in to nginx reverse proxy

I've successfully implemented an nginx reverse proxy for my shiny-server in order to have SSL and user authentication. However, there is still a gap that I can't figure out. Is there a way for my shiny app to determine which user is actually…
Dean MacGregor
  • 11,847
  • 9
  • 34
  • 72