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
8
votes
1 answer

DT Editing in Shiny application with client-side processing (server = F) throws JSON Error

I have a Shiny Server application in which the user can edit a datatable, after which some reactive summary statistics update accordingly. I am hosting this app on a fairly slow framework, which is why I want to use client-side processing for the DT…
JDG
  • 1,342
  • 8
  • 18
8
votes
1 answer

Preserve environment variables when spawning shiny processes within a container

I have a running Docker container with the shiny server from the slightly modified rocker/shiny image. The default shiny-server.conf file sets the shiny user as the one under # Define the user we should use when spawning R Shiny processes run_as…
8
votes
1 answer

ERROR: An error has occurred. Check your logs or contact the app author for clarification

while publishing app on web getting error called: check your log or contact the app auther.please find above image links ERROR: An error has occurred. Check your logs or contact the app author for clarification. if anyone can help me to resolve…
Ganesh_ac
  • 91
  • 1
  • 1
  • 5
8
votes
1 answer

Error while uploading app in Shiny.io

I'm trying to upload a shiny app on Shiny.io. The app gets deployed and when the link is tried the app gets crashed by throwing an error Disconnected from Server. When I checked in the Logs of the dashboard, it says Error in the server: could not…
Tareva
  • 230
  • 1
  • 13
8
votes
0 answers

R Shiny error "X11 font -adobe-helvetica-%s-%s-*-*-%d-*-*-*-*-*-*-*, face 1 at size 9 could not be loaded"

I am programming in R and trying to display a plot using ggplot. But I am getting a: Error: X11 font -adobe-helvetica-%s-%s---%d-------*, face 1 at size 9 could not be loaded I am running on Ubuntu 16.04 Error Image
Anand
  • 81
  • 2
8
votes
1 answer

Shiny apps greyed out - nginx proxy over ssl

I am trying to secure access to some shiny apps being served over our web server via https and using auth0 for login. Shiny apps don't work over https, though they work over http. System info: nginx/1.10.2 Shiny Server v1.5.3.838 Node.js v6.10.0…
infominer
  • 1,981
  • 13
  • 17
8
votes
1 answer

How to pass a variable from server.R to ui.R in shiny without global?

I've tried different ways to store a variable in server.R and use the same variable in ui.R without much success.(except declaring it global) Is there a way to pass a variable to ui.R from server.R? It could be a hacky way as long as it works.
tonybrown
  • 121
  • 1
  • 7
8
votes
3 answers

Plotly plot not rendering on shiny server

I am using the plotly package to display a plot in shiny. On my local machine the plot renders perfectly, however when I run the shiny app on shiny server I receive the error "Error: cannot open file 'Rplots.pdf'" where the plot is supposed to be…
mikew
  • 347
  • 6
  • 12
8
votes
3 answers

Shiny Application actionButton click on page load

I am building a Shiny application using the navbarPage() type. I have three tabs - the initial tab has a textInput() box that has default text defined. The mainPanel() of that page has a histogram and a table. On page load those update and reflect…
azdatasci
  • 801
  • 1
  • 13
  • 32
8
votes
3 answers

Restart shiny-server on centos

I have shiny-server installed and I am using it to host my shiny apps installed on a centos server. I'm pretty sure its installed correctly because it was working as expected until the server crashed, since the server recently crashed I need to…
clairekelley
  • 427
  • 2
  • 4
  • 11
8
votes
5 answers

How can I specify which shiny account to use when deploying?

I just want to ask about shiny accounts, I have two shiny registered accounts and now when I want to deploy I saw error like this Do you want to proceed with deployment? [Y/n]: y Error: Please specify the account which you want to deploy the…
user46543
  • 1,033
  • 4
  • 13
  • 23
8
votes
5 answers

shiny-server. Print JSON as a result output

I'm trying to use shiny-server as a process server: receive URL request, process R subroutines and output JSON as a result. but I have been unable print the output directly to the browser in JSON. Is posible to use shiny-server in this way? PD: I…
Alex A.
  • 633
  • 9
  • 12
7
votes
1 answer

How to use plotly in R shiny

I am trying to add graph for the output which i have generated using shiny. I am getting error for graph generation. Can someone please have a look and assist. The bar graph parameters are calculation based outputs generated from…
mayank14
  • 117
  • 1
  • 2
  • 6
7
votes
1 answer

How to change the Hover background color in ggplotly for bar chart

I using ggplotly to plot a graph. I am using the tooltip function to represent the values in the barchart when the cursor is moved on the top of the graphs. Source_Data <- data.frame( key = c(1, 1, 1, 2, 2, 2, 3, 3, 3), Product_Name = c( …
David Chris
  • 255
  • 4
  • 16
7
votes
0 answers

How Do I Publish Shiny a Shiny App to GCP?

What I Have Successfully Accomplished I have a shiny app that runs locally. I have set up a Ubuntu 19 server on a GCP VM instance I have installed RStudio Server & ShinyServer, and [EXTERNAL_IP]:3838 shows the standard geyser app I have copy-pasted…