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

Change default path of shiny server directory

I'm trying to set up a shiny server. I need to change default directory of Shiny apps (to avoid sudo permissions). I changed original shiny-server.conf to: #CHANGED; run_as userA; server { listen 3838; location / { # CHANGED site_dir…
pogibas
  • 27,303
  • 19
  • 84
  • 117
13
votes
1 answer

shinyproxy basic basics (+ some general web knowledge)

The problem While searching for ways to deploy shiny apps I stumbled across ShinyProxy. From what I understand it's an alternative for ShinyServer. However, I lack some (very basic) knowledge to follow the guide provided. The questions Can…
Siemkowski
  • 1,351
  • 5
  • 15
  • 32
13
votes
2 answers

docker nginx connection refused while connecting to upstream

I use shiny server to build a web-app on port 3838, when i use nginx in my server it works well. But when I stop nginx on my server and try to use docker nginx, I find the site comes to a '502-Bad Gate Way' error and nginx log shows: 2016/04/28…
jjdblast
  • 525
  • 1
  • 8
  • 26
13
votes
3 answers

Publish Rstudio Shiny App in intranet

I am trying to build a Rstudio/Shiny App and post it in our intranet so that everyone else in our office could see it. I am a windows guy, and the instructions online about how to setup a shiny server within Linux environment is a bit difficult for…
user2854008
  • 1,161
  • 4
  • 17
  • 23
12
votes
2 answers

R Shiny authentication using AWS Cognito

I'm using R Studio Server in combination with R Shiny, running on an Ubuntu 16.04. Everything works fine. I want to secure the R Shiny dashboards (username+pw), and I'm thinking about building a small webpage that communicates with AWS Cognito to…
Dendrobates
  • 3,294
  • 6
  • 37
  • 56
12
votes
2 answers

How to delete element from reactiveValues in shiny?

How to delete element from reactiveValues() For example, when I run the code: library(shiny) runApp(list( ui=tableOutput("table1"), server=function(input, output, session) { values <- reactiveValues(val1 = 1, val2 =2, val3 = 3) …
G.D.
  • 170
  • 1
  • 8
12
votes
8 answers

pandoc document conversion failed with error 127

I'm not sure how to make a reproducible example of this, but I'm curious to hear if anyone else has encountered this problem. I have an R Markdown file hosted via shiny server on an EC2 instance running Ubuntu. Everything was working fine for days…
Erin Shellman
  • 3,553
  • 4
  • 21
  • 26
12
votes
5 answers

R - Shiny | Error in cat(list(...), file, sep, fill, labels, append) : argument 1 (type 'list') cannot be handled by 'cat'

I am trying to write a Shiny app and need to first manipulate my data before I begin visualizing it. I have three inputs to manipulate the data. 1. Channel 2. Exclude a word 3. Find all comments with this word in it I am able to accomplish the…
Jacob Johnston
  • 121
  • 1
  • 1
  • 5
12
votes
3 answers

caching plots in R/Shiny

Just wondering if there are tricks/ways in which I could cache the plots being generated through our shiny app. Background: We are doing somewhat compute intensive computations which finally result in a plot. I am already caching(using memoise)…
Abhi
  • 6,075
  • 10
  • 41
  • 55
11
votes
1 answer

R Shiny app on Azure App Services with Active Directory Integration

I am currently deploying an R Shiny app to Azure App Service, and restricting access via Active Directory integration (which seems to use the Azure easyauth proxy under the hood). When I deploy the rocker/shiny:3.6.0 or rocker/shiny:4.0.0 container…
11
votes
2 answers

Disappearing shiny server log

I am trying to run a Shiny app on Digital Ocean and it looks like I still have space on the machine: free total used free shared buff/cache available Mem: 500096 78316 54188 5712 …
eliavs
  • 2,306
  • 4
  • 23
  • 33
11
votes
2 answers

Shiny Server - how to use session$onSessionEnded()

I'm trying to track user activity as they go through my shiny app. I have functions placed at specific locations which write lines to a temporary file. What I want is to have a function which is called when the user session ends. According to the…
Mark
  • 4,387
  • 2
  • 28
  • 48
11
votes
4 answers

R Shiny Make slider value dynamic

I've got a dropdown selector and a slider scale. I want to render a plot with the drop down selector being the source of data. - I've got this part working I simply want the slider's max value to change based on which dataset is selected. Any…
A_Skelton73
  • 1,150
  • 4
  • 12
  • 23
11
votes
1 answer

Getting the private ip address of an Rook/Shiny page user

I have created some web app using Rook which listen to my network ip (192.168.xx.xx) at port 8000. Everyone inside my office can connect to them just typing http://192.168.xx.xx:8000/page_name in the browser. I need to monitor these pages usage and…
Michele
  • 8,563
  • 6
  • 45
  • 72
10
votes
2 answers

How to securely integrate EC2 hosted Shiny app into asp.net project

I have two applications. R Shiny app hosted on EC2 Asp.net application hosted on Azure. The asp.net app preforms user authentication and is used to organize a whole data science pipeline. A user provides data, the data scientist transforms the…
Prometheus
  • 1,977
  • 3
  • 30
  • 57