oinume journal

Scratchpad of what I learned

SysAdmin

自宅サーバからso-netのSMTPにリレーする

そういえばISPをso-netに変えてからSMTPの設定変更してなかったのでメモ。 まずは /etc/postfix/main.cf に以下を追記。 relayhost = [mail.so-net.ne.jp]:587 smtp_sasl_type = cyrus smtp_sasl_auth_enable = yes smtp_sasl_password_maps = hash:/etc/pos…

Linuxで容量の大きいディレクトリを調べる

# du -m /home | sort -nr | head -10 で容量の大きいディレクトリTOP10を調べられる。

wgetでURLにアクセスできるか簡易的にチェックする

Webサーバがちゃんと立ち上がったかどうか、URLにアクセスしてチェックしたいので。 wget -o /dev/null -O - http://twitter.com/ > /dev/null if [ $? -eq 0 ] ; then echo "OK" else echo "Failure!!" fi な感じかなぁ。 [tmkm-amazon]4822282090[/tmkm-am…

sshで初回ログイン時に"The authenticity of host 'host' can't be established..."を聞かれないようにする設定

sshで ~/.ssh/known_hosts にないマシンにアクセスする場合 The authenticity of host 'your-host (127.0.0.1)' can't be established. RSA key fingerprint is 7f:cd:9a:d8:1d:9a:47:3b:97:e7:8e:c3:81:c8:2e:97. Are you sure you want to continue connec…

サーバの設定ファイルの管理方法

最近このブログの置き場所を自宅サーバからlinodeに移しました。それにあたってサーバの設定ファイルを git リポジトリで管理して linode に同期するようにしてみました。今日はそんなことをつらつらと書いてみたいと思います。 まず、なぜにサーバの設定フ…