shiny server SparkR web展現界面(一)

1. shiny server簡介mysql

shiny-server是一種可用把R 語言以web形式展現的服務,下面就講講如何在本身的服務器上構建Shiny Server。下一篇主要介紹如何集成sparkR後展現在web界面上linux

環境:ubuntu14.04web

下載:shiny-server的地址redis

 

2. 安裝步驟

2.1  安裝libpng,x11相關支持包

因爲ubuntu默認是不支持png 以及X11(redhat,centos也會有一樣的問題)sql

因此安裝R語言前須要安裝libpng,x11相關包,命令以下shell

bonnie@bonnie0:~$ sudo apt-get install build-essential gcc g++ autoconf libiconv-hook-dev libmcrypt-dev libxml2-dev libmysqlclient-dev libcurl4-openssl-dev libjpeg8-dev libpng12-dev libfreetype6-dev

bonnie@bonnie0:~$ sudo apt-get install libX11-dev libXext-dev libXtst-dev libXrender-dev libxmu-dev libxmuu-devubuntu

2.2 安裝R語言 驗證X11 ,libpng支持

 

bonnie@bonnie0:~$ sudo apt-get install r-base
centos

在命令行輸入R進入R語言shell服務器

bonnie@bonnie0: Rssh

R version 3.0.2 (2013-09-25) -- "Frisbee Sailing"
Copyright (C) 2013 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

  Natural language support but running in an English locale

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

capabilities()
    jpeg      png     tiff    tcltk      X11     aqua http/ftp  sockets 
    TRUE     TRUE     TRUE     TRUE     TRUE    FALSE     TRUE     TRUE 
  libxml     fifo   cledit    iconv      NLS  profmem    cairo 
    TRUE     TRUE     TRUE     TRUE     TRUE     TRUE     TRUE 

PS:若是你不是在ubuntu本機操做登錄,而是遠程經過ssh登陸時,ssh username@ip地址 要加 -X, 不然X11會顯示FALSE

 

2.2 在R中安裝shiny模塊

在R命令行中運行 install.packages("shiny")

> install.packages("shiny")

運行成功後(ctl + C)退出R界面

2.安裝shiny-server

bonnie@bonnie0:~$ sudo apt-get install gdebi-core
bonnie@bonnie0:~$ wget https://download2.rstudio.org/rstudio-server-1.0.44-amd64.deb
bonnie@bonnie0:~$ sudo gdebi rstudio-server-1.0.44-amd64.deb

2.4 啓動與關閉 shiny-server

start shiny-server        # 啓動
stop shiny-server      # 中止
restart shiny-server     # 重啓
status shiny-server     #查看狀態  
reload shiny-server     #不中斷服務的前提下 更新加載配置項

 

2.5 登錄web界面查看運行狀況

http://10.211.55.16:3838/   默認端口時3838,能夠在配置文件(/etc/shiny-server/shiny-server.conf)中修改

相關文章
相關標籤/搜索