1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

AzureでRHEL8のVMをアップグレードする方法

Last updated at Posted at 2021-06-11

AzureでRHEL8のVMをデプロイし、アップデートしても最新リリースバージョンになりません。

$ head -2 /etc/os-release
NAME="Red Hat Enterprise Linux"
VERSION="8.1 (Ootpa)"

$ sudo yum update --quiet -y

$ head -2 /etc/os-release
NAME="Red Hat Enterprise Linux"
VERSION="8.1 (Ootpa)"

アップグレードしてもリリース8.1のままで、そのバージョンの更新があるパッケージのみがアップグレードされます。

イメージがバージョンロックされているかどうかを確認します。

$ cat /etc/yum/vars/releasever
8.1

上記の場合、リリース8.1でロックされています。

リリース8.4などの別のリリースにアップグレードしたい場合は、以下の手順を参考ください。

バージョンロックをリリース8.4に変更し、すべてのパッケージを更新します。

echo 8.4 | sudo tee /etc/yum/vars/releasever
sudo yum update -y

その後、VMを再起動します。

sudo reboot

再起動後にリリースを確認します。

$ head -2 /etc/os-release
NAME="Red Hat Enterprise Linux"
VERSION="8.4 (Ootpa)"

リリース8.4にアップグレードされています。

以上です。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?