memo.xight.org

日々のメモ

カテゴリ : RedHat

1ページ目 / 全1ページ

Red Hat Linux での rc.d 操作

Summary

/sbin/chkconfig を用いる

現在のデーモン起動の設定一覧を見る

# chkconfig --list


デーモンを自動起動するように設定する

# chkconfig inetd on


ランレベルを指定して,デーモンを自動起動するように設定する

# chkconfig --level=2345 inetd on


デーモンを自動起動しないように設定する

# chkconfig inetd off


ランレベルを指定して,デーモンを自動起動しないように設定する

# chkconfig --level=2345 inetd off


デーモンを手動で起動/停止する

# /etc/rc.d/init.d/inetd start
# /etc/rc.d/init.d/inetd stop


起動スクリプトを chkconfig 対応にする

以下をスクリプトに記述

# chkconfig: ランレベル 起動する順番 停止する順番

例1) ランレベル 3,4,5 で S99, K01

# chkconfig: 345 99 1

例2) ランレベル 2,3,4,5 で S99, K01

# chkconfig: - 99 1

補足

Debian の場合はupdate-rc.dを利用.[2003-09-28-3]

Reference

Red Hat Enterprise Linux 4: リファレンスガイド - SysV Init ランレベル
http://www.redhat.com/docs/manuals/enterprise/RHEL-4-Manual/ja/ref-guide/s1-boot-init-shutdown-sysv.html

Tips Collection - Red Hat Linux - デーモン制御
http://quox.org/tips/linux/redhat.html#daemon

redhatコマンド便利技
http://gapo.zive.net/commandredhat/right.html

RPMパッケージのアップデートを楽にしたい

Reference

ITmedia エンタープライズ : Linux Tips「RPMパッケージのアップデートを楽にしたい」
http://www.itmedia.co.jp/help/tips/linux/l0417.html

ITmedia エンタープライズ : Linux Tips「「rhnsd --interval 120」と書かれたプロセスがある」
http://www.itmedia.co.jp/help/tips/linux/l0459.html

サポートが終了したRed Hat Linuxをアップデートするには

下準備

GnuPGがインストールされていない場合は

# rpm -Uvh http://download.fedoralegacy.org/redhat/9/updates/i386/gnupg-1.2.1-9.i386.rpm


aptを利用する場合

1. aptのインストール

# rpm -ivh http://download.fedora.us/fedora/redhat/9/i386/RPMS.stable/apt-0.5.5cnc6-0.fdr.8.rh90.i386.rpm


2. /etc/apt/sources.listの編集

rpm http://download.fedoralegacy.org/apt redhat/9/i386 os updates legacy-utils
# ミラーサーバの場合
rpm http://ftp.riken.go.jp/pub/Linux/fedoralegacy/apt redhat/8.0/i386 os updates legacy-utils

3. apt DBの更新

# apt-get update


4. PGPキーの追加

# rpm --import http://www.fedoralegacy.org/FEDORA-LEGACY-GPG-KEY


5. パッケージのアップデート

# apt-get upgrade


yumを利用する場合

1. yumのインストール

# rpm -ivh http://download.fedora.us/fedora/redhat/9/i386/RPMS.stable/yum-2.0.3-0.fdr.1.rh90.noarch.rpm


2. /etc/yum.conf の編集 (ミラーサイトを利用する場合)

[redhat-os]
name=Red Hat Linux $releasever ($basearch)
baseurl=
# http://download.fedora.us/fedora/redhat/$releasever/$basearch/yum/os/
  http://riksun.riken.go.jp/pub/Linux/fedoralegacy/redhat/$releasever/os/$basearch/

[redhat-updates]
name=Red Hat Linux $releasever ($basearch) updates
baseurl=
#  http://download.fedora.us/fedora/redhat/$releasever/$basearch/yum/updates/
  http://riksun.riken.go.jp/pub/Linux/fedoralegacy/redhat/$releasever/updates/$basearch/

3. PGPキーのアップデート

# rpm --import http://www.fedoralegacy.org/FEDORA-LEGACY-GPG-KEY


4. yum update

# yum update


5. Red Hat Networkを利用していた場合
以下のコマンドを実行してデーモンを止めておく.

# service rhnsd stop
# chkconfig rhnsd off


トラブルシューティング

warning: rpmts_HdrFromFdno: V3 DSA signature: NOKEY, key ID 4f2a6fd2

上記エラーの場合は以下を実行してみる.

# rpm --import /usr/share/doc/yum-2.0.3/*GPG-KEY
# rpm --import /usr/share/rhn/RPM-GPG-KEY


Reference

@IT - サポートが終了したRed Hat Linuxをアップデートするには (apt編)
http://www.atmarkit.co.jp/flinux/rensai/linuxtips/602endrhlup2.html
@IT - サポートが終了したRed Hat Linuxをアップデートするには (yum編)
http://www.atmarkit.co.jp/flinux/rensai/linuxtips/599endrhlup.html
The Fedora Legacy Project
http://www.fedoralegacy.org/