ablog

不器用で落着きのない技術者のメモ

2010-03-26から1日間の記事一覧

ORA-16014: ログ3、順序番号1398がアーカイブされていません。使用可能な宛先がありません。

本番環境だと、アーカイブログを退避しないといけないけど、そうではないので全削除して対応した。 $ rman target / RMAN> delete archivelog all; Do you really want to delete the above objects (enter YES or NO)? yes RMAN> exit 関連 アーカイブログ…

UNDOデータの保存期間

UNDOデータは、そのUNDOデータを作成したトランザクションが終了するまでは上書きされない。 RETENTION GUARANTEE に設定されている場合、UNDO_RETENTION初期化パラメータで指定された期間のUNDOデータは上書きされない。 RETENTION NOGUARANTEE に設定され…

passwd: Authentication token manipulation error

Linux でパスワードを変更しようとすると、 # passwd yoheia Changing password for user yoheia. passwd: Authentication token manipulation error って怒られた。@IT:passwdコマンドを実行するとエラーになる を参考に、pwconv を実行してみたら、 # pw…

jconsole で Tomcat を監視する

Tomcat の設定手順 jmxremote.password に ID/PASS を設定する。 # cd $JAVA_HOME/jre/lib/management # cp jmxremote.password.template jmxremote.password # chown tomcat:tomcat jmxremote.password # chmod 600 jmxremote.password # vi jmxremote.pass…