紀錄工作上的點點滴滴

linux 登入使用 google auth 二階段驗證

2025-01-11 linux

環境 OS: Debian 12 安裝及部屬 安裝 安裝 libpam-google-authenticator sudo apt -y install libpam-google-authenticator 設定 ssh 登入 /etc/pam.d/sshd auth required ... Read More

Disable Gnome Auto Upate

2025-01-09 linux gnome

禁止 Gnome 自動背景更新 設定文件: /etc/PackageKit/PackageKit.conf 設定文禁止更新 #PreventNetworkAccess=false PreventNetworkAccess=true sudo systemctl daemon-reload sudo ... Read More

tomcat log 格式探究

2025-01-02 tomcat

這幾天工作上有針對日誌設定做討論,但是單純對tomcat 日誌設定似乎缺少了實做探究,於是在下班之餘稍微探究了一下。今天先對日誌格式做研究。 在官網對於 log 工具預設是由 java 原生日誌工具處理 java.util.logging 原始設定 以下是 tomcat9 對 log ... Read More

Oracle Delete Database

2024-12-30 Oracle

Oracle 刪除資料庫 先查詢資料庫名稱 select name, open_mode from v$database; SQL> select name, open_mode from v$database; NAME OPEN_MODE --------- ... Read More

將腳本丟到背景執行

2024-12-30 linux

# 將腳本丟到背景執行,會輸出背景執行 PID Number nohup /usr/local/bin/example-shell.sh & # 監控結果 tail -f nohup.out # 監控背景程序還有執行 watch -n 1 "ps -p 120448 -o ... Read More

Grails Export Dependencies

2024-12-24 grails gradle

Grails 匯出專案中相依套件的 jar 環境 grails version: grails5 設定方式 在 build.gradle 新增設定 configurations { runtime.extendsFrom(compileClasspath, runtimeOnly) } task ... Read More

systemctl

2024-12-22 linux

變更 systemctl 默認編輯器 sudo update-alternatives --config editor 執行結果 root@example:~# sudo update-alternatives --config editor There are 3 choices for the ... Read More

Install Postgresql on Debian12

2024-12-22 postgresql

環境 OS: Debian 12 Database version: postgresql 14 安裝 sudo apt -y install curl ca-certificates sudo install -d /usr/share/postgresql-common/pgdg sudo ... Read More

nmcli 指令操作

2024-12-18 linux NetworkManager

處理前動作 檢查文件中已經有配置: /etc/network/interfaces 如果有需要註解,範例如下: # The primary network interface # allow-hotplug enp1s0 # iface enp1s0 inet dhcp 新增網卡配置 sudo ... Read More

關閉centos7防火牆firewalld改用傳統的iptables

2024-11-21 linux firewalld iptables

關閉 centos7 防火牆 firewalld 改用傳統的 iptables 這樣做的原因 因為firewalld 政策是對外嚴謹對內寬鬆,所以當需求是需要對內嚴謹時無法滿足需求 處理方式 預設開機不啟動 且 立即停止 systemctl disable --now firewalld ... Read More