Linux Logrotate 想要用年月日當檔名

Linux 的 Logrotate 預設都是用 1、2、3... 然後自動壓縮、刪除~~

但是檔名若想要用年月日結尾,要怎麼設定呢?

閱讀全文〈Linux Logrotate 想要用年月日當檔名〉

Mplayer 播放速度加速 保持正常音調

現在看很多課程影片,都會想要加速 * 1.2 ~ 2倍速,通常聲音也會變得有點怪

使用 mplayer 加速外,還有功能是保持原本正常音調的,突然覺得超好用~~

閱讀全文〈Mplayer 播放速度加速 保持正常音調〉

MySQL 只要或排除 Replication 某DB 的設定方式

MySQL Replication 預設是將所有設定都同步到 Slave,只想要將某些資料庫同步,或者某些資料庫不要同步,要怎麼做呢?

閱讀全文〈MySQL 只要或排除 Replication 某DB 的設定方式〉

Docker 遇到 driver failed 與 iptables No chain 等問題解法

Docker run 遇到下述錯誤訊息:

  • docker: Error response from daemon: driver failed programming external connectivity on endpoint xxx: (iptables failed: iptables --wait -t nat -A DOCKER -p tcp -d 127.0.0.1 --dport 1234 -j DNAT --to-destination 172.17.0.2:1234 ! -i docker0: iptables: No chain/target/match by that name.

解法

  • $ sudo iptables -t filter -F
  • $ sudo iptables -t filter -X
  • $ sudo systemctl restart docker

再來 Docker 就可以正常執行囉~~