SLES 15 zypper および yast エラー

SLES 15 zypper および yast エラー

GCP 上に定義済みの SLES 15.1 Linux VM を作成しました。

SUSEConnect、zypper、yast の機能が動作しません。

常に「11-リソースが一時的に利用できません」というエラーが発生します

たとえば、次のコマンドを実行します。

# SUSEConnect -p sle-module-basesystem/15.1/x86_64

結果:

Registering system to registration proxy https://smt-gce.susecloud.net
Updating system details on https://smt-gce.susecloud.net ...
Activating sle-module-basesystem 15.1 x86_64 ...
-> Adding service to system ...
command 'zypper --non-interactive refs Basesystem_Module_x86_64' failed
Error: zypper returned (1) with 'Unexpected exception.
Unknown error reading from 'plugin:/susecloud?credentials=Basesystem_Module_x86_64&path=/services/1772'
History:
 - Receive: script died unexpectedly
 - [11-Resource temporarily unavailable]

Please file a bug report about this.
See http://en.opensuse.org/Zypper/Troubleshooting for instructions.'

どなたか、この問題を解決するのを手伝っていただけますか? この SLES にいくつかの追加パッケージをインストールする必要があります。

答え1

これは、バージョン 4.4.2 の lxml 構成ファイルが原因です。したがって、アンインストールして新しいバージョン 4.6.2 をインストールし、以下のコマンドを使用して再登録してください。

# pip freeze | grep lxml
# pip uninstall lxml
# pip install lxml
# /usr/sbin/registercloudguest --force-new
# zypper update

お役に立てれば。

関連情報