Ubuntu 12.04の起動時に「rpcbind: Cannot open ‘/run/rpcbind/rpcbind.xdr’ file for reading」エラー

Ubuntu 12.04の起動時にエラーがでてるのみつけました

rpcbind: Cannot open '/run/rpcbind/rpcbind.xdr' file for reading

https://bugs.launchpad.net/ubuntu/+source/rpcbind/+bug/835833
を参考に

$ vim /etc/init/portmap.conf

script
        if [ -f /etc/default/rpcbind ]; then
                . /etc/default/rpcbind
        elif [ -f /etc/rpcbind.conf ]; then
                . /etc/rpcbind.conf
        fi
    if [ -e /run/rpcbind/portmap.xdr ] || [ -e /run/rpcbind/rpcbind.xdr ] ; then
        OPTIONS="$OPTIONS -w"
    fi
    exec rpcbind $OPTIONS
end script

と言った感じに修正
エラーが出なくなりました

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください