Search code examples
rshinyr-markdownshiny-server

Shiny-server does not show rmarkdown even in the example page (rmarkdown package installed)


I installed a shiny-server on Amazon AWS EC-2 (Amazon Linux AMI 2015.09.1 (HVM), SSD Volume Type - ami-60b6c60a). The server works fine for the Shiny apps, but does not render the .rmd, even the rmd from the example page.

I only see this error:

Error: error in running command

Error

In the HTML:

<div id="__reactivedoc__" class="shiny-html-output shiny-bound-output shiny-output-error">error in running command</div>

I already installed the rmarkdown package, it works fine on Rstudio. (I use the same user for Rstudio and Shiny server).

I don't know how to get more information about the error, I don't see other messages.

Somebody have an idea?


NEW INFO: I investigate the logs from the server: This is the output from the /var/log/shiny-server/:

su: ignore --preserve-environment, it's mutually exclusive to --login.

Listening on http://127.0.0.1:52294

/opt/shiny-server/ext/pandoc/pandoc: error while loading shared libraries: libgmp.so.3: cannot open shared object file: No such file or directory
Warning: Error in system: error in running command
Stack trace (innermost first):
    97: system
    96: force
    95: with_pandoc_safe_environment
    94: get_pandoc_version
    93: FUN
    92: lapply
    91: find_pandoc
    90: pandoc_available
    89: <Anonymous>
    88: do.call
    87: contextFunc
    86: .getReactiveEnvironment()$runWith
    85: shiny::maskReactiveContext
    84: reactive reactive({
    out <- rmd_cached_output(file, encoding)
    output_dest <- out$dest
    if (out$cached) {
        if (nchar(out$resource_folder) > 0) {
            shiny::addResourcePath(basename(out$resource_folder), 
                out$resource_folder)
        }
        return(out$shiny_html)
    }
    if (!file.exists(dirname(output_dest))) {
        dir.create(dirname(output_dest), recursive = TRUE, mode = "0700")
    }
    resource_folder <- knitr_files_dir(output_dest)
    perf_timer_reset_all()
    dependencies <- list()
    shiny_dependency_resolver <- function(deps) {
        dependencies <<- deps
        list()
    }
    output_opts <- list(self_contained = FALSE, copy_resources = TRUE, 
        dependency_resolver = shiny_dependency_resolver)
    message("\f")
    args <- merge_lists(list(input = reactive_file(), output_file = output_dest, 
        output_dir = dirname(output_dest), output_options = output_opts, 
        intermediates_dir = dirname(output_dest), runtime = "shiny"), 
        render_args)
    result_path <- shiny::maskReactiveContext(do.call(render, 
        args))
    if (!dir_exists(resource_folder)) 
        dir.create(resource_folder, recursive = TRUE)
    shiny::addResourcePath(basename(resource_folder), resource_folder)
    dependencies <- append(dependencies, list(create_performance_dependency(resource_folder)))
    write_deps <- base::file(file.path(resource_folder, "shiny.dep"), 
        open = "wb")
    on.exit(close(write_deps), add = TRUE)
    serialize(dependencies, write_deps, ascii = FALSE)
    if (!isTRUE(out$cacheable)) {
        shiny::onReactiveDomainEnded(shiny::getDefaultReactiveDomain(), 
            function() {
                unlink(result_path)
                unlink(resource_folder, recursive = TRUE)
            })
    }
    shinyHTML_with_deps(result_path, dependencies)
})
    73: doc
    72: shiny::renderUI
    71: func
    70: output$__reactivedoc__
     3: <Anonymous>
     2: do.call
     1: rmarkdown::run

On the /opt/shiny-server/ext/pandoc/ I have these:

-rwxrwxr-x 1 root root 37191008 Feb  3  2014 pandoc
-rwxrwxr-x 1 root root 38520576 Feb  3  2014 pandoc-citeproc
drwxrwxr-x 2 root root     4096 Jan 13 15:15 static
I tried to install "gmp.x86_64", but the results are:

> yum install gmp.x86_64
Loaded plugins: priorities, update-motd, upgrade-helper
amzn-main/latest                                         | 2.1 kB     00:00
amzn-updates/latest                                      | 2.3 kB     00:00
epel/x86_64/metalink                                     | 3.0 kB     00:00
epel/x86_64                                              | 4.3 kB     00:00 ...
epel/x86_64/updateinfo                                   | 715 kB     00:00
epel/x86_64/primary_db                                   | 5.8 MB     00:01
949 packages excluded due to repository priority protections
Package gmp-6.0.0-11.16.amzn1.x86_64 already installed and latest version
Nothing to do

And still not working.... Maybe there is another package? In my "/usr/lib64/" I have libgmp.so.10.2.0, but I think I don't have libgmp.so.3. Even installing the i686 version, still the same.


Solution

  • I solved the problem with help from the github issues page of shiny-server How sjpascual said, just install the packages: compat-gmp4 and compat-libffi5 to fix it.

    Now is working fine.