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)
Author Archives: cowman.chiang
VMware vCenter 的 Hardware Status Tab消失或是無法取得硬體資訊
有幾個做法 1. 確認 vCenter 的 Plug-ins Plug-ins 工具列 => Manage Plug-ins 確認 (1) vCenter Hardware Status 的狀態是否為 Enable,若沒有就啟動他吧 (2) vCenter Service Status 的狀態是否為 Enable,若沒有就啟動他吧 檢查 host 上的 sfcbd-watch 服務是否正常 /etc/init.d/sfcbd status 若沒有,可試著重啟 hosts 的 service /sbin/services.sh restart 重啟 CIM 服務 … Continue reading
Posted in VMware
Leave a comment
OpenVPN 備援路由
先確認網路卡組態設定 第一張網卡 eth0 有設定 gateway 第二張網卡 eth1 沒有設定 gateway 這樣啟動時網路路由只有第一組的預設路由 接著編輯/etc/rc.locl 加入下面兩個設定 開機時自動加入第二組路由 route add default gw ..*.254 dev eth1 metric 10 調整備援路由切換時間,預設300 echo “10” > /proc/sys/net/ipv4/route/gc_timeout 最後可以檢查路由表 [root@twaren3-132 ~]# route -n Kernel IP routing table Destination Gateway Genmask Flags … Continue reading
Posted in Linux, OpenVPN
Leave a comment
OBS Remote Webclient 修正為可帶通訊埠資訊
在研究 OBS (Open Broadcaster Software) 時意外發現了一個好用的 Plugin OBS Remote 其用意主要就是當OBS安裝了Plugin後~可以透過手機APP、Web等環境經由WebSocket的方式進行控制 預設走的Port是TCP 4444,如果需要改Port的話就必須要改一下語法了 //原本的 js / websocket.js 檔案 function connectWebSocket(host) { connectingHost = host; var url = “ws://” + connectingHost + “:4444”; console.log(“trying to connect to: ” + url); if (typeof … Continue reading
Posted in OBS
Leave a comment
Iframe 允許 fullscreen
礙於某些原因,更改css有點麻煩….. 所以就直接使用iframe把別人做好的網頁樣版包起來排版 這將就方便許多了!! 只是這次包的是player,那全螢幕???? 查了一下~可以用下列方法達成 allowFullScreen=”true” webkitallowfullscreen=”true” mozallowfullscreen=”true” 只是這個方法對ie…..沒用!
Posted in HTML
Leave a comment
Nginx RTMP Module Stat
將 RTMP 模組檔案解壓縮後的 stat.xsl 複製到網頁目錄 wget https://github.com/arut/nginx-rtmp-module/archive/master.zip unzip master.zip cp nginx-rtmp-module-master/stat.xsl /usr/local/nginx/html/. 編輯 Nginx 設定檔,加入 stat 網頁設定 location /stat { rtmp_stat all; rtmp_stat_stylesheet stat.xsl; } location /stat.xsl { root html; } 重新讀取設定檔 連結網頁 http://[ip]/stat 參考 : https://github.com/arut/nginx-rtmp-module
Posted in Nginx, RTMP
Leave a comment
使用 Windows 內建 netsh 進行 Port Forwarding
將 local listen 的 610 port 轉發至 10.201.80.94 的 4444 port netsh interface portproxy add v4tov4 listenaddress=127.0.0.1 listenport=610 connectaddress=10.201.80.94 connectport=4444 將 1 建立的 rule 刪除 netsh interface portproxy delete v4tov4 listenaddress=127.0.0.1 listenport=610 秀出目前建立的 rule netsh interface portproxy show all
Posted in Windows
Leave a comment
Nginx 存取設定 – http_auth_basic_module
編輯檔案 /usr/local/nginx/conf/nginx.conf for http 模組 location / { satisfy any; # satisfy 滿足條件 # satisfy [all | any] # satisfy all => 下列條件都要滿足 # satisfy any => 下列條件只要任一滿足就可以 # 此處用到 http_access_module 及 http_auth_basic_module 兩個 # 所以設定為any~任一滿足即可 root html; index index.html … Continue reading
Posted in Nginx
Leave a comment
iBeacon SDK
Estimote為成大推薦的iBeacon廠牌,目前在Github上可查到iOS跟Android的SDK iOS => https://github.com/Estimote/iOS-SDK Android => https://github.com/Estimote/Android-SDK
Posted in iBeacon, iOS
Leave a comment
Nginx 存取設定
檔案 /usr/local/nginx/conf/nginx.conf #在 http 模組下 location / { root html; index index.html index.htm; # allowed ip list allow 192.168.0.0/24; #deny ip list deny all; } location /obs-remote { root html; index index.html index.htm; # allowed ip list allow 192.168.0.0/24; #deny … Continue reading
Posted in Nginx
Leave a comment