Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 332
Diego Gaona Avatar asked Dec 08 '22 00:12

Diego Gaona


2 Answers

For Fedora 23 I had the same problem

[root@pjux shiny-server]# ldd -d /opt/shiny-server/ext/pandoc/pandoc
linux-vdso.so.1 (0x00007ffff9eb0000)
libz.so.1 => /lib64/libz.so.1 (0x00007fc20bd55000)
librt.so.1 => /lib64/librt.so.1 (0x00007fc20bb4d000)
libutil.so.1 => /lib64/libutil.so.1 (0x00007fc20b949000)
libdl.so.2 => /lib64/libdl.so.2 (0x00007fc20b745000)
libgmp.so.3 => not found
libffi.so.5 => not found
libm.so.6 => /lib64/libm.so.6 (0x00007fc20b442000)
libc.so.6 => /lib64/libc.so.6 (0x00007fc20b081000)
libpthread.so.0 => /lib64/libpthread.so.0 (0x00007fc20ae63000)
/lib64/ld-linux-x86-64.so.2 (0x0000561bb7c14000)

but

ln -s  /lib64/libffi.so.6.0.2 /lib64/libffi.so.5
ln -s  /lib64/libgmp.so.10.2.0 /lib64/libgmp.so.3

solved it

like image 188
Paul J Avatar answered Dec 28 '22 09:12

Paul J


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.

like image 32
Diego Gaona Avatar answered Dec 28 '22 09:12

Diego Gaona