TCP / IP (Transmission Control Protocol over Internet Protocol)使用的是三項交握流程
當你的電腦向某台主機請求資源時,你會發送 SYN 訊息給這台電腦
當這台電腦收到訊息後,會開始將資源 SYN/ACK 傳送給你
Continue Reading紀錄如何查詢 MySQL 資料庫中,所有 database size 語法如下: SELECT table_schema "DB Name", ROUND(SUM(data_length + index_length) / 1024 / 1024, 1) "DB Size in MB" FROM information_schema.tables GROUP BY table_schema;
Continue ReadingDive 是一個查看 Docker image 層次結構的工具,幫助你管理 image,減少image size。
Continue Reading設定開機自動啟動/不啟動服務 有些服務,再開機後會自動被啟動,有些則不會 可以透過 chkconfig 來設定 參數: on 開機後自動啟動服務 off 開機後不啟動服務 例如 將apache服務設定為開機啟動 chkconfig httpd on 或開機不啟動 chkconfig httpd off 查詢目前的預設啟動服務列表 chkconfig --list 查詢預設啟動服務列表,可以看到共分成7個 level: Level Level說明 0 關機 1 單人模式 2 多人模式,沒有網路功能 3 完整多人模式,文字介面 4 保留 5 完整多人模式,圖形介面 6 重新開機 針對指定的 level 設定為啟動或關閉
Continue ReadingmacOS 預設並沒有提供 FTP command line 工具
大多數 FTP 連線需求,也多是透過 GUI 或 IDE 來完成
這裡則要介紹如何透過命令列來進行 FTP 連線
Continue Reading在前後端分離架構中,需要頻繁的測試及查看 json ,通常都會透過 postman, insomnia 來輔助開發
這裡要介紹的是在 Command-Line 可直接檢視 json 的套件 fx
Continue ReadingHow to back up GCP Storage file and folder to local?
Here I’m using gsutil tool command line tool to download all file to local.
Continue Reading在開發上傳檔案套件過程,原本測試圖片上傳功能都正常 但是當上傳 pdf, video 時,卻遇到 getMimeType 發生 The file "" does not exist 的錯誤 查詢原因,原來是在 php 原始設定的最大上傳限制設定太低 因此,開啟 php.ini 設定 upload_max_filesize 調整為 10Mb 即可正常上傳
Continue Reading更新方式
sudo npm cache clean -f
sudo npm install -g n
sudo n stable
Continue Reading
在阿里雲 ECS 默認的安裝環境,看到 安全警示 RHSA-2017:3263: curl security update
阿里雲的 centOS 7.4 預設的 curl 及 libcurl 不是最新版本,存在漏洞問題
修復該漏洞的方式:
Continue Reading當執行 ssh-add 時 ssh-add ~/.ssh/<private_key_file> 如果出現錯誤訊息: Could not open a connection to your authentication agent. 執行進入 ssh bash ,就能正執行 ssh-add ssh-agent bash ssh-add ~/.ssh/<private_key_file>
Continue Readingssh-keygen -f ~/.ssh/your_custom_name -C "youremail@emailhost.com"
Continue Reading
權限 r : 讀取 w : 寫入 x : 執行 權限角色 擁有者(u), 群組(g), 其他使用者(o) 所有使用者(a) 權限與數值關係 權限數字 數值相加 權限表示 0 0+0+0 — 1 0+0+1 –x 2 0+2+0 -w- 3 0+2+1 -wx 4 4+0+0 r– 5 4+0+1 r-x 6 4+2+0 rw- 7 4+2+1 rwx 檔案型態 檔案型態 說明 d 目錄 - 檔案 l 連結檔 b 儲存的周邊設備 c 序列設備 常見格式 目錄 777 drwx rwx rwx
Continue Reading