在 CentOS/Linux 把 Kibana 3.0 部署在 Nginx 1.9.12

来源:http://www.cnblogs.com/liuning8023/archive/2016/03/14/5276460.html
-Advertisement-
Play Games

上一篇文章《安裝 logstash 2.2.0、elasticsearch 2.2.0 和 Kibana 3.0》,介紹瞭如何安裝 Logstash、Elasticsearch 以及用 Python 的 SimpleHTTPServer 模塊部署 Kibana。 本文介紹如何在 Linux 上把 K...


上一篇文章《安裝 logstash 2.2.0、elasticsearch 2.2.0 和 Kibana 3.0》,介紹瞭如何安裝 Logstash、Elasticsearch 以及用 Python 的 SimpleHTTPServer 模塊部署 Kibana。

本文介紹如何在 Linux 上把 Kibana 部署在 Nginx。

假設,我機器 IP 是 10.1.8.166,Kibana 和 Nginx 都安裝在這個機器上。

  • 下載 Nginx。下載 Nginx,並上傳到你的伺服器上,我放在 /usr/local/src/nginx。
  • 解壓 Nginx。
[root@vcyber nginx]# pwd
 
/usr/local/src/nginx
 
[root@vcyber nginx-1.9.12]# tar -zxvf nginx-1.5.9.tar.gz 
 
[root@vcyber nginx]# ls
 
nginx-1.9.12  nginx-1.9.12.tar.gz
 
[root@vcyber nginx]#
  • 配置 Nginx。指定把 Nginx 安裝到 /usr/local/nginx。
[root@vcyber nginx]# cd nginx-1.9.12
 
[root@vcyber nginx-1.9.12]# ls
 
auto     CHANGES.ru  configure  html     Makefile  objs    src
 
CHANGES  conf        contrib    LICENSE  man       README
 
[root@vcyber nginx-1.9.12]# ./configure --prefix=/usr/local/nginx
 
checking for OS
 
 + Linux 2.6.32-504.23.4.el6.x86_64 x86_64
 
checking for C compiler ... found
 
 + using GNU C compiler
 
 + gcc version: 4.4.7 20120313 (Red Hat 4.4.7-16) (GCC)
 
checking for gcc -pipe switch ... found
 
checking for -Wl,-E switch ... found
 
checking for gcc builtin atomic operations ... found
 
checking for C99 variadic macros ... found
 
checking for gcc variadic macros ... found
 
checking for gcc builtin 64 bit byteswap ... found
 
checking for unistd.h ... found
 
……
 
./configure: error: the HTTP rewrite module requires the PCRE library.
 
You can either disable the module by using --without-http_rewrite_module
 
option, or install the PCRE library into the system, or build the PCRE library
 
statically from the source with nginx by using --with-pcre=<;path> option.
 
[root@vcyber nginx-1.9.12]#

具體配置參數,參看 http://nginx.org/en/linux_packages.html

報錯了~說,HTTP rewrite 模塊需要 PCRE 庫。安裝一個就行。Nginx 至少依賴三個你可能沒有的庫(其他的,Linux 系統自帶),因為我機器用了有段時間,也懶得看是否有,總之,沒有再安裝。

  • 安裝 PCRE 庫。
[root@vcyber bin]# yum -y install pcre-devel
 
Loaded plugins: fastestmirror
 
Setting up Install Process
 
Loading mirror speeds from cached hostfile
 
 * base: mirrors.yun-idc.com
 
 * epel: mirrors.yun-idc.com
 
 * extras: mirrors.yun-idc.com
 
 * updates: mirrors.yun-idc.com
 
Resolving Dependencies
 
-->; Running transaction check
 
--->; Package pcre-devel.x86_64 0:7.8-7.el6 will be installed
 
-->; Finished Dependency Resolution
 
……
 
Complete!
 
[root@vcyber bin]#

Nginx 除了依賴 PCRE 庫,還有 openssl、openssl-devel、zlib。如果你的機器上沒有,就用 yum 安裝一下。

  • 再試一次
[root@vcyber nginx-1.9.12]# ls
auto     CHANGES.ru  configure  html     Makefile  objs    src
CHANGES  conf        contrib    LICENSE  man       README
[root@vcyber nginx-1.9.12]# ./configure --prefix=/usr/local/nginx
checking for OS
 + Linux 2.6.32-504.23.4.el6.x86_64 x86_64
checking for C compiler ... found
 + using GNU C compiler
 + gcc version: 4.4.7 20120313 (Red Hat 4.4.7-16) (GCC)
checking for gcc -pipe switch ... found
……
 
Configuration summary
  + using system PCRE library
  + OpenSSL library is not used
  + md5: using system crypto library
  + sha1: using system crypto library
  + using system zlib library
 
  nginx path prefix: "/usr/local/nginx"
  ……
 
[root@vcyber nginx-1.9.12]#

這次成功了~

  • 編譯安裝 Nginx。
[root@vcyber nginx-1.9.12]# make & make install
  • 檢查是否安裝成功。
[root@vcyber sbin]# pwd
 
/usr/local/nginx/sbin
 
[root@vcyber sbin]# ./nginx -t
 
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
 
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
 
[root@vcyber sbin]#

顯示,OK 和 successful。

  • 啟動 Nginx
[root@vcyber sbin]# ./nginx
 
[root@vcyber sbin]#

在瀏覽器地址欄輸入,訪問80埠,

2016-03-14_161825

  • 把 Kibana 部署到 Nginx。

其實,很簡單~只需要修改 Nginx 配置 nginx.conf 的 server 小節即可。下麵配置文件,是截取,並不完整。

[root@vcyber conf]# pwd
/usr/local/nginx/conf
[root@vcyber conf]# cat nginx.conf
 
#user  nobody;
	   

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • Android Material Design DrawerLayout和NavigationView及Palette
  • 本文詳細整理了 Cocoa 的 Runtime 系統的知識,它使得 Objective-C 如虎添翼,具備了靈活的動態特性,使這門古老的語言煥發生機。主要內容如下: 曾經覺得Objc特別方便上手,面對著 Cocoa 中大量 API,只知道簡單的查文檔和調用。還記得初學 Objective-C 時把[
  • iOS9系統下 為了我司APP的相容性問題 特意把手上的iOS Mac XCode都升級到了最新的beta版 然後發現iOS9的多任務管理器風格大變 變成了下麵這種樣子 我忽然想起來之前的文章提到我最愛的UI控制項iCarousel要實現類似這種效果其實是很簡單的 一時興起就花時間試驗了一下 效果還不
  • 本節先說網路請求的重構 舊代碼結構圖: 之前的代碼控制器中都是一個個需要連接網路的方法中直接調用service的請求方法並獲取回調,屬於常規做法。 重構後結構圖:  使用RAC改寫後,controller不會直接調用service,controller通過控制一個個command的執行與否來達到發請
  • 1.撥打電話:am start -a android.intent.action.CALL -d tel:10086             這裡-a表示動作,-d表述傳入的數據,還有-t表示傳入的類型。 2. 打開一個網頁:am start -a android.intent.action.VIE
  • Android 6.0 許可權與安全,請求許可權
  • 代碼: RootViewController.m    
  • 按照慣例, 先上效果圖   做這個項目是因為剛好在逛博客園的時候看到一篇文章 博客園第三方客戶端-i博客園正式發佈App Store, 這裡就幫忙貼下鏈接, 和那篇文章的作者一樣, 我也是剛畢業要找實習的人了(/(ㄒoㄒ)/~~), 開發容易找工不易, 哎, 做個項目練練手吧.  然後, 整個項目做
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...