Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/logrotate
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/var/log/shiny-server.log {
/var/log/shiny-server/shiny-server.log {
rotate 12
copytruncate
compress
Expand Down
2 changes: 1 addition & 1 deletion config/systemd/shiny-server.service
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Description=ShinyServer

[Service]
Type=simple
ExecStart=/usr/bin/env bash -c 'exec /opt/shiny-server/bin/shiny-server >> /var/log/shiny-server.log 2>&1'
ExecStart=/usr/bin/env bash -c 'exec /opt/shiny-server/bin/shiny-server >> /var/log/shiny-server/shiny-server.log 2>&1'
KillMode=process
ExecReload=/usr/bin/env kill -HUP $MAINPID
ExecStopPost=/usr/bin/env sleep 5
Expand Down
2 changes: 1 addition & 1 deletion config/upstart/shiny-server.conf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ post-start script
done
end script

exec shiny-server --pidfile=/var/run/shiny-server.pid >> /var/log/shiny-server.log 2>&1
exec shiny-server --pidfile=/var/run/shiny-server.pid >> /var/log/shiny-server/shiny-server.log 2>&1

respawn limit 3 30

Expand Down
2 changes: 1 addition & 1 deletion samples/welcome.html
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ <h1>Welcome to Shiny Server!</h1>
<h2>What's Next?</h2>
Now you're ready to setup Shiny &mdash; if you haven't already &mdash; and start deploying your Shiny applications.
<p>If you see a Shiny application running on the right side of this page, then Shiny is configured properly on your server and already running an example. Bravo! You can see this application on your server at <a href="./sample-apps/hello/">/sample-apps/hello/</a>.</p>
<p>If you see a gray box or an error message, then there's a bit more work to do to get Shiny running fully. You can continue with <a href="https://www.rstudio.com/products/shiny/download-server/">the installation instructions</a> or use <a href="http://docs.rstudio.com/shiny-server/">the Admin Guide</a> for more information. If you're seeing an error message in the panel to the right, you can use it to help diagnose what may be wrong. If you think Shiny is installed and setup properly and things still aren't working, you can look in the Shiny Server log which may have more information about what's wrong. By default, the log is stored in <code>/var/log/shiny-server.log</code>.</p>
<p>If you see a gray box or an error message, then there's a bit more work to do to get Shiny running fully. You can continue with <a href="https://www.rstudio.com/products/shiny/download-server/">the installation instructions</a> or use <a href="http://docs.rstudio.com/shiny-server/">the Admin Guide</a> for more information. If you're seeing an error message in the panel to the right, you can use it to help diagnose what may be wrong. If you think Shiny is installed and setup properly and things still aren't working, you can look in the Shiny Server log which may have more information about what's wrong. By default, the log is stored in <code>/var/log/shiny-server/shiny-server.log</code>.</p>
<p>If you're really stuck <em>and you've read the relevant sections in <a href="http://docs.rstudio.com/shiny-server/">the Admin Guide</a></em> then please ask for help on our <a href="https://community.rstudio.com/c/shiny">RStudio Community forum</a>.</p>

<h2><pre>rmarkdown</pre></h2>
Expand Down