DB接続をkillする

 $ ps auxww|grep postgres
 postgres  8794   0.0  0.1  2461712   2264   ??  Ss    9:56PM   0:00.00 postgres: taro my_db ::1(56209) idle  
 $ kill 8794
 for pid in $(ps -eo pid,args | grep 'postgres:' | grep my_db | tr -s ' ' ',' | cut -f 1 -d,); do
   echo kill $pid
 done

トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS