利用可能なパッケージで samba4 を更新しようとするとエラーが発生する

利用可能なパッケージで samba4 を更新しようとするとエラーが発生する

私たちの実稼働環境では、最新の samba4 パッケージに更新してセキュリティ パッチを適用する必要があります。CentOS 6 ビルドの場合。

samba4 用のパッケージが利用可能であることはわかっています (yum info samba4)

[root@server ~]# yum info samba4
Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
 * base: ftpmirror.your.org
 * epel: archive.linux.duke.edu
 * extras: ftp.osuosl.org
 * updates: bay.uchicago.edu
Available Packages
Name        : samba4
Arch        : x86_64
Version     : 4.2.10
Release     : 12.el6_9
Size        : 428 k
Repo        : updates
Summary     : Server and Client software to interoperate with Windows machines
URL         : http://www.samba.org/
License     : GPLv3+ and LGPLv3+
Description : Samba is the standard Windows interoperability suite of programs for Linux and Unix.

しかし、アップデートを実行してもインストールされません。

[root@server ~]# yum update samba4
Loaded plugins: fastestmirror, security
Setting up Update Process
Loading mirror speeds from cached hostfile
 * base: ftpmirror.your.org
 * epel: archive.linux.duke.edu
 * extras: ftp.osuosl.org
 * updates: bay.uchicago.edu
Package(s) samba4 available, but not installed.
No Packages marked for Update

このボックスにはSambaがインストールされていることは知っています

[root@server ~]$ rpm -qa | grep samba
samba-winbind-3.6.23-45.el6_9.x86_64
samba-common-3.6.23-45.el6_9.x86_64
samba-client-3.6.23-45.el6_9.x86_64
samba4-libs-4.2.10-11.el6_9.x86_64
samba-winbind-clients-3.6.23-45.el6_9.x86_64

samba4 を更新できない理由について何か考えはありますか?

ありがとう

答え1

インストールされていないyum update samba4ためsamba4、リストに表示されavailable packages、インストールしようとするとメッセージが表示されます。

必要samba4なコマンドは次のとおりです。

yum install samba4

関連情報