■前提
RHEL 7 または CentOS 7 Linux インスタンスのホスト名を更新
■手順
1. hostnamectl コマンドを実行
$ sudo hostnamectl set-hostname --static <persistent_host_name>
2. /etc/cloud/cloud.cfg ファイルを更新
$ sudo vi /etc/cloud/cloud.cfg
ファイルの末尾に次の文字列を付加。
これにより、OS再起動後も指定したホスト名が維持される。
<↓追記文字列↓>
<↓追記文字列↓>
preserve_hostname: true
3. インスタンスを再起動
$ sudo reboot
4. 変更したホスト名が維持されていることを確認。
$ uname -n