yuu_nkjm blog
2011-09-16(Fri) 編集
[grep][Postfix][command] grepでマッチした行とその後ろの行を取得し,特定の文字列を色づけする(for maillog)
hoge-.*@nkjm.infoというメーリングリストが正しく動作しているかを,目視で調べたい.
管理しているサーバでは,hoge-.*@nkjm.infoへのメールは,その次の行でstatusが表示されるので,grepでhoge-.*@nkjm.infoとマッチさせつつ,Aオプションを使ってその次の行も取得する.色づけはcolorオプションを使う.
grep -A 1 -e 'hoge-.*@nkjm.info' /var/log/maillog|grep --color -e 'status='
メーリングリストのチェックの場合は,maillogを目で見てメーリングリストへの投稿と覚しきメールのIDを発見し,それを使ってgrepすると良いと思う.
メールのIDのようなものとは「Sep 21 11:41:03 localhost postfix/qmgr[11776]: E24B2E18038 ← これのこと: from=…」.
grep -A 1 -e 'メールのIDのようなもの' /var/log/maillog
PuTTY上で実行した結果
2014-09-16(Tue) 編集
[Ruby][gem][bundler][Chef][Vagrant][openSUSE] はじめてのVagrant on Linux
Vagrant
使い込む元気はなさそうだけど,Vagrant+Chef-soloによるプロビジョニングデビュー. MAGCruise/MAGCruiseChefを動かすために頑張ってみる.
initialize': Malformed version number string virtualboxというエラーが出た
can't start my VM on Vagrant 1.5.1 · Issue #3195 · mitchellh/vagrantの通り'echo "1.1" > ~/.vagrant.d/setup_version'で解決した.
Chef-SoloでのSSLエラー
vagrant - chef-solo ssl warning when provisioning - Stack Overflowに掲載されているエラーが出たが,実害はなさそうなので,現状ではスルー.
Chefのインストール
GeoCode software.opensuse.org:などからrpmをダウンロードして,インストール.
zypper addrepo obs://devel:languages:ruby:extensions/openSUSE_13.1 "Ruby extensions" yast2 -i rubygem-chef yast2 -i virtualbox wget http://files.vagrantup.com/packages/a40522f5fabccb9ddabad03d836e120ff5d14093/vagrant_1.3.5_i686.rpm yast2 -i ./vagrant_1.3.5_i686.rpm wget http://download.opensuse.org/repositories/devel:/languages:/ruby:/extensions/openSUSE_13.1/x86_64/gecode-3.7.3-2.3.x86_64.rpm yast2 -i gecode-3.7.3-2.3.x86_64.rpm yast2 -i geocode-devel yast2 -i rubygem-openssl-nonblock yast2 -i libopenssl-devel yast2 -i ruby-build yast2 -i gnu-crypto yast2 -i rubygem-vagrant yast2 -i ruby19 yast2 -i ruby19-devel yast2 -i ruby19-devel-extra yast2 -i rubygem-eventmachine yast2 -i cpp47