Categories
- FFMpeg (5)
- Libav (1)
- Google (3)
- iBeacon (1)
- LDAP (3)
- Me (2)
- Network (11)
- OS (149)
- RTMP (4)
- SIP (1)
- Kamailio (1)
- SNMP (1)
- VMware (20)
- VCP考試 (1)
- 伺服器 網站服務 (105)
- 名詞解釋 (4)
- 專案管理 (1)
- 工具軟體 (51)
- Adobe (1)
- FMS (1)
- Cloudera (1)
- Docker (1)
- Eclipse (4)
- Intellij (2)
- OBS (2)
- Office (10)
- Excel (4)
- PowerPoint (5)
- Postman (2)
- Splunk (13)
- Virtualbox (2)
- Visual Studio (2)
- 文字編輯器 (10)
- Sublime Text 2 (6)
- Sublime Text 3 (3)
- Vim (3)
- 連線工具 (1)
- Xshell (1)
- Adobe (1)
- 程式語言 (80)
- CSS (2)
- HTML (2)
- iOS (1)
- Java (30)
- JavaScript (5)
- jQuery (4)
- jsTree (2)
- JSP (3)
- PHP (16)
- Python (8)
- Ruby (1)
- sed (1)
- Shell Script (8)
- Windows Bash Script (1)
- XML (1)
- 資料庫 (37)
- FFMpeg (5)
Category Archives: 工具軟體
Flash Media Server (RTMP Server)
基本上裝完就可以跑了!!! 主要設定如下 (以下以OBS產生Streaming為例) OBS設定 => 廣播 模式:直播串流 串流服務:Custom 伺服器:rtmp://[Flash Media Server 伺服器ip]:1935/livepkgr/ 播放路徑:[變數]?adbe-live-event=liveevent 這時後便可以透過連結 rtmp://[Flash Media Server 伺服器ip]/livepkgr/[變數] 進行播放
Posted in FMS, RTMP
Leave a comment
Sublime Text 2 修改Tab設定
預設的Tab = 4個Spaces 寬度,這邊將它調整為2個Spaces寬度 Preferences -> Settings – More -> Syntax Specific -User 加入以下內容 { “tab_size”: 2, “translate_tabs_to_spaces”: true }
Posted in Sublime Text 2
Leave a comment
Sublime Text 2 install PHP-Beautifier
環境:Windows 7 x64 安裝 PHP 1.1 http://windows.php.net/download/,選擇Installer最新版本下載安裝 1.2 將PHP安裝路徑加至Windows系統環境變數Path內 安裝php pear 2.1 下載http://pear.php.net/go-pear.phar至PHP目錄下 2.2 使用命令提示字元(以系統管理者啟動),切換至PHP目錄,輸入php go-pear.phar進行安裝 2.3 PHP目錄下會產生Pear_ENV.reg檔案,將它加入至系統內 PHP安裝PHP_Beautifier 3.1 在PHP目錄下,輸入pear install PHP_Beautifier-0.1.15進行安裝 3.2 修改PHP目錄下的php_beautifier,將error_reporting(E^ALL)修改為error_reporting(0),大約在第55行 3.3 修改PHP目錄下的php_beautifier.bat,將所有的改為/ 3.4 修改PHPpearPHPBeautifierFilter目錄下的Pear.filter.php及phpBB.filter.php,將require_once (‘PEAR/Config.php’);註解 Sublime Text 2安裝PHP_beautifier 4.1 Sublime Text 2安裝Package Control,進入Console模式(ctrl+`),輸入import urllib2,os; pf=’Package … Continue reading
Posted in PHP, Sublime Text 2
Leave a comment
Splunk 安裝
至 Splunk 安裝程式下載網頁依據系統下載對應的安裝程式 (此步驟需要Splunk上的帳號) <—-後續以 CentOS 6.x 32bit為例—->
Posted in Splunk
Leave a comment
Splunk Subsearch ( 或是一次執行兩個有關係的Search )
sourcetype=”mail_pop3″ [search sourcetype=”mail_pop3″ | top 100 pop3_loginfailed_ip | rename pop3_loginfailed_ip as pop3_signingon_ip | fields pop3_signingon_ip | outputcsv pop3_loginfailed_ip_top10.csv] [| inputcsv pop3_loginfailed_ip_top10.csv | return 10 pop3_signingon_ip] | stats count by pop3_signingon_ip, pop3_signingon_id 綠色: 這個搜尋主要是將POP3_loginfailed_ip的前10名輸出至pop3_loginfailed_ip_top10.csv檔案 並且同時將pop3_loginfailed_ip的欄位名稱以pop3_signingon_ip取代,以便後續input的時候使用 藍色: 接著就輸入pop3_loginfailed_ip_top10.csv檔案,並且依據pop3_signingon_ip這個欄位產生10組搜尋語法 假設pop3_login_failed_ip_top10.csv的內容為 “pop3_signingon_ip”, “_tc” “206.54.106.82”, … Continue reading
Posted in Splunk
Leave a comment
FTP Download Script
< pre lang=”bash”> !/bin/sh 程式說明:每日將 Mail Log 匯入 Splunk 之 Script 版本時間:2013/05/30 10:40 開發維護:cowman.chiang@udngroup.com 檢查檔案是否存在,存在則移除檔案 避免ftp下載時無法覆蓋檔案以致無法取得新版檔案 function checkfile(){ if test -f “${local_dir}/${1}” then echo “File ${1} exist, remove!” rm “${local_dir}/${1}” else echo “File ${1} not exist” a=1 fi } 設定 … Continue reading
Posted in Linux, Splunk
Leave a comment
Splunk 指定Web服務Port
方法1 登入 Web 後進管理員更改 方法2 修改 web.conf (但是我還是不知道在哪….) 方法3 指令直接更改 (狂推) /opt/splunk/bin/splunk set web-port 443
Posted in Splunk
Leave a comment
Splunk搬移到新主機
{Old-Splunk-server}:service splunk stop {Old-Splunk-server}:tar cvf {檔案名稱} /opt/splunk/ {Old-Splunk-server}:scp {檔案名稱} {帳號}@{New-Splunk-server}:/tmp {New-Splunk-server}:tar xvf /tmp/{檔案名稱} -C / {New-Splunk-server}:下載Splunk Tar安裝檔案 {New-Splunk-server}:tar xvzf {Splunk-Tar-安裝檔案} -C /opt {New-Splunk-server}:/opt/splunk/bin/splunk enable boot-start 就可以依造 {Old-Splunk-server} 的連接設定進行使用 但需要注意因為IP名稱應該會更動,有關IP的部分都要重新設定 包含Clinet端Foward的目標、Syslog server的設定等
Posted in Splunk
Leave a comment
物件名稱包含變數 + 應用紀錄
Dim s1, s2 As Integer Sub OnSlideShowPageChange() s1 = 1 s2 = 1 With ActivePresentation.Slides(SlideShowWindows(1).View.Slide.SlideIndex) If .Shapes.Title.TextFrame.TextRange.Text = “Windows 安裝Splunk” Then allhide selectphoto (s1) ElseIf .Shapes.Title.TextFrame.TextRange.Text = “Windows 設定 Forward” Then allhide_1 selectphoto_1 (s2) End If End With End Sub … Continue reading
Posted in PowerPoint
Leave a comment