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

Could not find function "chartJSRadarOutput" in shiny server

I have a shiny app which I run it successfully on rstudio in Ubuntu. However I user the same files in shiny-server directory and when I access the app from browser from shiny-server I get this error: ERROR: could not find function…
Niemik
  • 73
  • 8
0
votes
0 answers

Reading from source is not working

I have a server.r file from shiny app. I have also an external file which I want to read it in server.r file. So I use this: library(shiny) require(ggplot2) source('myfile.R', local = FALSE) but when I run the app it seems it doesn't read the file.…
Niemik
  • 73
  • 8
0
votes
1 answer

Running shiny server app with additional r files

I have 3 files which are needed to my app. First a general r with functions make some calculations and need to load the ui and server files to run the app. When I run it on Rstudio it works fine. How is it possible to insert this app to shiny…
Niemik
  • 73
  • 8
0
votes
0 answers

R - Shiny: start server.R without using R studio

I am using R without RStudio, trying to start the R shiny server inside R. Here is what I have when I am in R. > dir() [1] "app.R" "data.R" [3] "server.R" "server.Rout" [5]…
Edamame
  • 23,718
  • 73
  • 186
  • 320
0
votes
0 answers

renderPlotly() in shiny creating jpeg in server dir

I'm trying to deploy an app on Ubuntu Shiny-sever. I'm finding that when I attempt to run the app that it fails when it tries to access a graph generated by renderPlotly() because the shiny-sever only has read access to the app folder. When I sudo…
Kyrubas
  • 877
  • 8
  • 23
0
votes
1 answer

How can I call R shiny html file via javascript?

I am trying to make a very simple password protection for an R shiny web app file. The code you see below is contained in an index.html. Within that same folder is a file named "testflex.html". That is the file i want to protect with a password.…
Kasper Christensen
  • 895
  • 3
  • 10
  • 30
0
votes
2 answers

Error: file does not exist. Uploading shiny app to shinyapps.io

Multiple users have posted the same specific issue (link below) but there are currently no posted answers. Shiny App runs fine locally but will not upload to shinyapps.io. The .csv files are in a folder within the working dir called "data". I'm…
W148SMH
  • 152
  • 1
  • 11
0
votes
1 answer

Check if interactive markdown is being run on Shiny Server

I want to write some R markdown templates which the user can choose to either save to the hard disk as an HTML document or run interactively through Shiny Server. I think I need some way to check which of the modes the Rmd file is being executed…
TheComeOnMan
  • 12,535
  • 8
  • 39
  • 54
0
votes
1 answer

RStudio Server - load file.RData Error : invalid multibyte string

I have a file file.RData with one of the data frames containing values with Swedish characters. When loading file.RData in the Shiny app, it works fine on the local Windows machine, but when I move it to Ubuntu server and run it in RStudio Server:…
adlisval
  • 341
  • 1
  • 7
  • 17
0
votes
0 answers

R Shiny app - big mysql query results in page not loading

I have a Shiny app which uses two mysql queries to retrieve data and the app works well when run from RStudio. (one of the queries is taking around 8 minutes) But when I move it on a Shiny Server and access http://ip/myapp/, the page it's loading…
adlisval
  • 341
  • 1
  • 7
  • 17
0
votes
1 answer

how to use scrollx in shiny DT (renderDataTable)

I want use scrollx options in shiny DataTable since there are many field. (refer : https://datatables.net/examples/basic_init/scroll_x.html) How can i use? I cant'n find any examples.
Rokmc1050
  • 463
  • 1
  • 6
  • 16
0
votes
1 answer

Shiny server - schedule mysql query instead of running everytime the app is loaded?

I have a Shiny Server running in Ubuntu VM in Azure. How do I schedule every night the mysql queries inside server.R ? And how do I avoid running them every time the app is visited ? Here's a sample of my server.R and ui.R…
adlisval
  • 341
  • 1
  • 7
  • 17
0
votes
1 answer

not able to start or stop shiny-server on RedHat AWS

I've got shiny installed and running on a RedHat AWS EC2 instance. However, it seems to be forever running, because typing stop shiny-server or start shiny-server results in the error: -bash: restart: command not found. I don't see this when I…
Gaurav Bansal
  • 5,221
  • 14
  • 45
  • 91
0
votes
0 answers

can i access HTTP Variables in a R Shiny script?

I have a CAS authenticated Apache server with redirects to shiny like this Allow from localhost RewriteEngine on RewriteCond %{HTTP:Upgrade} =websocket RewriteRule…
R.Merritt
  • 477
  • 5
  • 17
0
votes
1 answer

Turn a .R file into an actual Shiny application on Ubuntu Server

I have developed several Shiny apps in Rstudio and I'm now attempting host them through my own Shiny server on an AWS instance of Ubuntu 16.04. My issue is that I do not understand how to translate the .R file into a Shiny application that can be…
bshelt141
  • 1,183
  • 15
  • 31