VMware ESXiの仮想マシン Pandora 5.1SP3でyumのレポジトリでエラーが出たので修正しました。
1 2 3 4 5 6 7 8 9 10 11 12 |
[root@localhost ~]# yum update 読み込んだプラグイン:fastestmirror, refresh-packagekit, security Repository centosplus is listed more than once in the configuration Repository contrib is listed more than once in the configuration 更新処理の設定をしています Loading mirror speeds from cached hostfile * base: www.ftp.ne.jp * extras: www.ftp.ne.jp * updates: www.ftp.ne.jp http://dl.fedoraproject.org/pub/epel/6//repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found" 他のミラーを試します。 エラー: Cannot retrieve repository metadata (repomd.xml) for repository: EPEL. Please verify its path and try again |
1 2 3 4 5 6 7 8 9 10 11 |
[root@localhost ~]# ls -l /etc/yum.repos.d/ 合計 28 -rw-r--r-- 1 root root 1991 10月 23 20:41 2014 CentOS-Base.repo -rw-r--r-- 1 root root 647 10月 23 20:41 2014 CentOS-Debuginfo.repo -rw-r--r-- 1 root root 630 10月 23 20:41 2014 CentOS-Media.repo -rw-r--r-- 1 root root 5394 10月 23 20:41 2014 CentOS-Vault.repo -rw-r--r-- 1 root root 289 10月 23 20:41 2014 CentOS-fasttrack.repo -rw-r--r-- 1 root root 897 9月 10 11:28 2015 extra_repos.repo [root@localhost ~]# grep "http://dl.fedoraproject.org" /etc/yum.repos.d/* /etc/yum.repos.d/extra_repos.repo:baseurl = http://dl.fedoraproject.org/pub/epel/6// |
extra_repos.repoでエラーが出ていましたので以下修正しました。
【修正前】
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
[root@localhost ~]# cat /etc/yum.repos.d/extra_repos.repo # This is the official Centos6 repository for Pandora FMS # from Artica, the company behind Pandora FMS. [Artica] name=CentOS-Artica-PandoraFMS baseurl=http://artica.es/centos6/ gpgcheck=0 enabled=1 [EPEL] name = CentOS Epel baseurl = http://dl.fedoraproject.org/pub/epel/6// enabled=1 gpgcheck=0 #additional packages that extend functionality of existing packages [centosplus] name=CentOS- - Plus baseurl=http://mirror.centos.org/centos/6/centosplus// gpgcheck=1 enabled=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 #contrib - packages by Centos Users [contrib] name=CentOS- - Contrib baseurl=http://mirror.centos.org/centos/6/contrib// gpgcheck=1 enabled=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 #percona repository [percona] name=CentOS- - Percona baseurl=http://repo.percona.com/centos/6/os// gpgcheck=1 enabled=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-percona |
【修正後】
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
[root@localhost ~]# cat /etc/yum.repos.d/extra_repos.repo # This is the official Centos6 repository for Pandora FMS # from Artica, the company behind Pandora FMS. [Artica] name=CentOS-Artica-PandoraFMS baseurl=http://artica.es/centos6/ gpgcheck=0 enabled=1 [EPEL] name = CentOS Epel #baseurl = http://dl.fedoraproject.org/pub/epel/6// mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=epel-6&arch=$basearch enabled=1 gpgcheck=0 #additional packages that extend functionality of existing packages [centosplus] name=CentOS- - Plus baseurl=http://mirror.centos.org/centos/6/centosplus// gpgcheck=1 enabled=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 #contrib - packages by Centos Users [contrib] name=CentOS- - Contrib baseurl=http://mirror.centos.org/centos/6/contrib// gpgcheck=1 enabled=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 #percona repository [percona] name=CentOS- - Percona #baseurl=http://repo.percona.com/centos/6/os// baseurl=http://repo.percona.com/centos/6/os/x86_64/ gpgcheck=1 enabled=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-percona |
試しにyum updateを実行してみます。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 |
[root@localhost ~]# yum update 読み込んだプラグイン:fastestmirror, refresh-packagekit, security Repository centosplus is listed more than once in the configuration Repository contrib is listed more than once in the configuration 更新処理の設定をしています Loading mirror speeds from cached hostfile EPEL/metalink | 5.5 kB 00:00 * EPEL: ftp.kddilabs.jp * base: www.ftp.ne.jp * extras: www.ftp.ne.jp * updates: www.ftp.ne.jp Artica | 951 B 00:00 EPEL | 4.3 kB 00:00 percona | 951 B 00:00 percona/primary | 172 kB 00:00 percona 587/587 依存性の解決をしています --> トランザクションの確認を実行しています。 ---> Package NetworkManager.x86_64 1:0.8.1-75.el6 will be 更新 ---> Package NetworkManager.x86_64 1:0.8.1-99.el6 will be an update (snip) ================================================================================ パッケージ アーキテクチャ バージョン リポジトリー 容量 ================================================================================ インストールしています: kernel x86_64 2.6.32-573.3.1.el6 updates 30 M 更新: NetworkManager x86_64 1:0.8.1-99.el6 base 1.1 M NetworkManager-glib x86_64 1:0.8.1-99.el6 base 238 k NetworkManager-gnome x86_64 1:0.8.1-99.el6 base 480 k PackageKit x86_64 0.5.8-25.el6 base 527 k PackageKit-device-rebind x86_64 0.5.8-25.el6 base 96 k PackageKit-glib x86_64 0.5.8-25.el6 base 222 k PackageKit-gtk-module x86_64 0.5.8-25.el6 base 95 k PackageKit-yum x86_64 0.5.8-25.el6 base 157 k PackageKit-yum-plugin x86_64 0.5.8-25.el6 base 92 k Percona-Server-client-55 x86_64 5.5.45-rel37.4.el6 percona 6.2 M Percona-Server-server-55 x86_64 5.5.45-rel37.4.el6 percona 15 M Percona-Server-shared-55 x86_64 5.5.45-rel37.4.el6 percona 649 k anaconda x86_64 13.21.239-1.el6.centos base 3.2 M at x86_64 3.1.10-48.el6 base 61 k authconfig x86_64 6.1.12-23.el6 base 377 k authconfig-gtk x86_64 6.1.12-23.el6 base 68 k bash x86_64 4.1.2-33.el6 base 907 k bind-libs x86_64 32:9.8.2-0.37.rc1.el6_7.4 updates 886 k bind-utils x86_64 32:9.8.2-0.37.rc1.el6_7.4 updates 186 k binutils x86_64 2.20.51.0.2-5.43.el6 base 2.8 M biosdevname x86_64 0.6.2-1.el6 base 34 k centos-release x86_64 6-7.el6.centos.12.3 base 21 k chkconfig x86_64 1.3.49.3-5.el6 base 159 k cpuspeed x86_64 1:1.5-22.el6 base 37 k cronie x86_64 1.4.4-15.el6 base 74 k cronie-anacron x86_64 1.4.4-15.el6 base 31 k cups x86_64 1:1.4.2-72.el6 base 2.3 M cups-libs x86_64 1:1.4.2-72.el6 base 321 k curl x86_64 7.19.7-46.el6 base 196 k dejavu-fonts-common noarch 2.33-1.el6 base 63 k dejavu-lgc-sans-mono-fonts noarch 2.33-1.el6 base 397 k dejavu-sans-fonts noarch 2.33-1.el6 base 2.2 M dejavu-sans-mono-fonts noarch 2.33-1.el6 base 474 k dejavu-serif-fonts noarch 2.33-1.el6 base 951 k device-mapper x86_64 1.02.95-3.el6_7.2 updates 176 k device-mapper-event x86_64 1.02.95-3.el6_7.2 updates 124 k device-mapper-event-libs x86_64 1.02.95-3.el6_7.2 updates 118 k device-mapper-libs x86_64 1.02.95-3.el6_7.2 updates 223 k device-mapper-multipath x86_64 0.4.9-87.el6 base 125 k device-mapper-multipath-libs x86_64 0.4.9-87.el6 base 193 k dhclient x86_64 12:4.1.1-49.P1.el6.centos base 319 k dhcp-common x86_64 12:4.1.1-49.P1.el6.centos base 143 k dmidecode x86_64 1:2.12-6.el6 base 74 k dracut noarch 004-388.el6 base 125 k dracut-kernel noarch 004-388.el6 base 26 k e2fsprogs x86_64 1.41.12-22.el6 base 554 k e2fsprogs-libs x86_64 1.41.12-22.el6 base 121 k efibootmgr x86_64 0.5.4-13.el6 base 38 k elfutils-libelf x86_64 0.161-3.el6 base 193 k elfutils-libs x86_64 0.161-3.el6 base 228 k enchant x86_64 1:1.5.0-5.el6 base 49 k ethtool x86_64 2:3.5-6.el6 base 103 k evolution-data-server x86_64 2.32.3-23.el6 base 2.6 M firefox x86_64 38.2.1-1.el6.centos updates 70 M fprintd x86_64 0.1-22.git04fd09cfa.el6 base 41 k fprintd-pam x86_64 0.1-22.git04fd09cfa.el6 base 13 k gdbm x86_64 1.8.0-38.el6 base 29 k gdbm-devel x86_64 1.8.0-38.el6 base 25 k gdk-pixbuf2 x86_64 2.24.1-6.el6_7 updates 501 k ghostscript x86_64 8.70-21.el6 base 4.4 M glibc i686 2.12-1.166.el6_7.1 updates 4.3 M glibc x86_64 2.12-1.166.el6_7.1 updates 3.8 M glibc-common x86_64 2.12-1.166.el6_7.1 updates 14 M glibc-devel x86_64 2.12-1.166.el6_7.1 updates 985 k glibc-headers x86_64 2.12-1.166.el6_7.1 updates 614 k glx-utils x86_64 10.4.3-1.el6 base 25 k gnome-settings-daemon x86_64 2.28.2-31.el6 base 613 k gnutls x86_64 2.8.5-18.el6 base 347 k grep x86_64 2.20-3.el6 base 345 k grub x86_64 1:0.97-94.el6 base 937 k gstreamer-plugins-good x86_64 0.10.23-3.el6 base 1.3 M gvfs x86_64 1.4.3-22.el6 base 897 k gvfs-archive x86_64 1.4.3-22.el6 base 64 k gvfs-fuse x86_64 1.4.3-22.el6 base 31 k gvfs-smb x86_64 1.4.3-22.el6 base 91 k hal-info noarch 20090716-5.el6 base 57 k httpd x86_64 2.2.15-47.el6.centos updates 830 k httpd-tools x86_64 2.2.15-47.el6.centos updates 77 k hwdata noarch 0.233-14.1.el6 base 1.3 M initscripts x86_64 9.03.49-1.el6.centos base 945 k iproute x86_64 2.6.32-45.el6 base 367 k iptables x86_64 1.4.7-16.el6 base 254 k iptables-ipv6 x86_64 1.4.7-16.el6 base 103 k iputils x86_64 20071127-20.el6 base 120 k irqbalance x86_64 2:1.0.7-5.el6 base 41 k iscsi-initiator-utils x86_64 6.2.0.873-14.el6 base 723 k kernel-firmware noarch 2.6.32-573.3.1.el6 updates 18 M kernel-headers x86_64 2.6.32-573.3.1.el6 updates 3.9 M kexec-tools x86_64 2.0.0-286.el6 base 345 k kpartx x86_64 0.4.9-87.el6 base 65 k krb5-libs x86_64 1.10.3-42.el6 base 768 k libX11 x86_64 1.6.0-6.el6 base 586 k libX11-common noarch 1.6.0-6.el6 base 192 k libXfont x86_64 1.4.5-5.el6_7 updates 137 k libcom_err x86_64 1.41.12-22.el6 base 37 k libcurl x86_64 7.19.7-46.el6 base 168 k libdrm x86_64 2.4.59-2.el6 base 125 k libgcc x86_64 4.4.7-16.el6 base 103 k libgomp x86_64 4.4.7-16.el6 base 134 k libgudev1 x86_64 147-2.63.el6 base 63 k libpcap x86_64 14:1.4.0-4.20130826git2dbcaa1.el6 base 131 k libreport x86_64 2.0.9-24.el6.centos base 259 k libreport-compat x86_64 2.0.9-24.el6.centos base 16 k libreport-gtk x86_64 2.0.9-24.el6.centos base 45 k libreport-newt x86_64 2.0.9-24.el6.centos base 19 k libreport-plugin-reportuploader x86_64 2.0.9-24.el6.centos base 25 k libreport-plugin-rhtsupport x86_64 2.0.9-24.el6.centos base 34 k libreport-python x86_64 2.0.9-24.el6.centos base 36 k libsemanage x86_64 2.0.43-5.1.el6 base 104 k libsmbclient x86_64 3.6.23-20.el6 base 1.6 M libsoup x86_64 2.34.3-3.el6_6 base 188 k libss x86_64 1.41.12-22.el6 base 42 k libstdc++ x86_64 4.4.7-16.el6 base 295 k libudev x86_64 147-2.63.el6 base 76 k libuser x86_64 0.56.13-8.el6_7 updates 368 k libuser-python x86_64 0.56.13-8.el6_7 updates 50 k libxcb x86_64 1.9.1-3.el6 base 110 k libxml2 x86_64 2.7.6-20.el6 base 801 k libxml2-python x86_64 2.7.6-20.el6 base 322 k livecd-tools x86_64 1:13.4.8-1.el6 EPEL 55 k logrotate x86_64 3.7.8-23.el6 base 58 k lshw x86_64 B.02.17-3.el6 base 253 k lsof x86_64 4.82-5.el6 base 324 k lvm2 x86_64 2.02.118-3.el6_7.2 updates 856 k lvm2-libs x86_64 2.02.118-3.el6_7.2 updates 941 k man-pages-overrides noarch 6.7.5-1.el6 base 1.1 M mdadm x86_64 3.3.2-5.el6 base 345 k mesa-dri-drivers x86_64 10.4.3-1.el6 base 14 M mesa-dri-filesystem x86_64 10.4.3-1.el6 base 16 k mesa-libEGL x86_64 10.4.3-1.el6 base 62 k mesa-libGL x86_64 10.4.3-1.el6 base 146 k mesa-libGLU x86_64 10.4.3-1.el6 base 197 k mesa-libgbm x86_64 10.4.3-1.el6 base 34 k microcode_ctl x86_64 1:1.17-20.el6 base 737 k mlocate x86_64 0.22.2-6.el6 base 86 k module-init-tools x86_64 3.9-25.el6 base 466 k ncurses x86_64 5.7-4.20090207.el6 base 268 k ncurses-base x86_64 5.7-4.20090207.el6 base 61 k ncurses-libs x86_64 5.7-4.20090207.el6 base 245 k net-snmp x86_64 1:5.5-54.el6_7.1 updates 308 k net-snmp-libs x86_64 1:5.5-54.el6_7.1 updates 1.5 M net-snmp-utils x86_64 1:5.5-54.el6_7.1 updates 176 k nss x86_64 3.19.1-3.el6_6 updates 856 k nss-softokn x86_64 3.14.3-23.el6_7 updates 262 k nss-softokn-freebl i686 3.14.3-23.el6_7 updates 157 k nss-softokn-freebl x86_64 3.14.3-23.el6_7 updates 167 k nss-sysinit x86_64 3.19.1-3.el6_6 updates 46 k nss-tools x86_64 3.19.1-3.el6_6 updates 433 k nss-util x86_64 3.19.1-1.el6_6 updates 66 k ntp x86_64 4.2.6p5-5.el6.centos base 595 k ntpdate x86_64 4.2.6p5-5.el6.centos base 77 k ntsysv x86_64 1.3.49.3-5.el6 base 29 k openjpeg-libs x86_64 1.3-11.el6 base 60 k openldap x86_64 2.4.40-5.el6 base 283 k openssh x86_64 5.3p1-112.el6_7 updates 274 k openssh-askpass x86_64 5.3p1-112.el6_7 updates 58 k openssh-clients x86_64 5.3p1-112.el6_7 updates 438 k openssh-server x86_64 5.3p1-112.el6_7 updates 324 k openssl x86_64 1.0.1e-42.el6 base 1.5 M pam i686 1.1.1-20.el6_7.1 updates 659 k pam x86_64 1.1.1-20.el6_7.1 updates 658 k pam_passwdqc x86_64 1.0.5-8.el6 base 35 k parted x86_64 2.1-29.el6 base 608 k pcre x86_64 7.8-7.el6 base 196 k perl x86_64 4:5.10.1-141.el6 base 10 M perl-CGI x86_64 3.51-141.el6 base 209 k perl-Compress-Raw-Zlib x86_64 1:2.021-141.el6 base 70 k perl-Compress-Zlib x86_64 2.021-141.el6 base 46 k perl-ExtUtils-MakeMaker x86_64 6.55-141.el6 base 293 k perl-ExtUtils-ParseXS x86_64 1:2.2003.0-141.el6 base 46 k perl-IO-Compress-Base x86_64 2.021-141.el6 base 70 k perl-IO-Compress-Zlib x86_64 2.021-141.el6 base 136 k perl-Module-Pluggable x86_64 1:3.90-141.el6 base 40 k perl-Pod-Escapes x86_64 1:1.04-141.el6 base 33 k perl-Pod-Simple x86_64 1:3.13-141.el6 base 213 k perl-Test-Harness x86_64 3.17-141.el6 base 232 k perl-Test-Simple x86_64 0.92-141.el6 base 113 k perl-Time-HiRes x86_64 4:1.9721-141.el6 base 49 k perl-devel x86_64 4:5.10.1-141.el6 base 424 k perl-libs x86_64 4:5.10.1-141.el6 base 578 k perl-version x86_64 3:0.77-141.el6 base 52 k php x86_64 5.3.3-46.el6_6 updates 1.1 M php-cli x86_64 5.3.3-46.el6_6 updates 2.2 M php-common x86_64 5.3.3-46.el6_6 updates 529 k php-gd x86_64 5.3.3-46.el6_6 updates 111 k php-ldap x86_64 5.3.3-46.el6_6 updates 43 k php-mbstring x86_64 5.3.3-46.el6_6 updates 459 k php-mysql x86_64 5.3.3-46.el6_6 updates 86 k php-pdo x86_64 5.3.3-46.el6_6 updates 79 k php-snmp x86_64 5.3.3-46.el6_6 updates 35 k pinentry x86_64 0.7.6-8.el6 base 66 k policycoreutils x86_64 2.0.83-24.el6 base 651 k polkit x86_64 0.96-11.el6 base 162 k polkit-desktop-policy noarch 0.96-11.el6 base 7.9 k ppp x86_64 2.4.5-10.el6 base 328 k procps x86_64 3.2.8-33.el6 base 217 k pulseaudio x86_64 0.9.21-21.el6 base 555 k pulseaudio-gdm-hooks x86_64 0.9.21-21.el6 base 17 k pulseaudio-libs x86_64 0.9.21-21.el6 base 462 k pulseaudio-libs-glib2 x86_64 0.9.21-21.el6 base 24 k pulseaudio-module-gconf x86_64 0.9.21-21.el6 base 25 k pulseaudio-module-x11 x86_64 0.9.21-21.el6 base 31 k pulseaudio-utils x86_64 0.9.21-21.el6 base 71 k pykickstart noarch 1.74.20-1.el6 base 313 k python x86_64 2.6.6-64.el6 base 76 k python-imgcreate x86_64 1:13.4.8-1.el6 EPEL 97 k python-libs x86_64 2.6.6-64.el6 base 5.3 M python-nss x86_64 0.16.0-1.el6 base 241 k quota x86_64 1:3.17-23.el6 base 202 k rng-tools x86_64 5-1.el6 base 32 k rpm x86_64 4.8.0-47.el6 base 904 k rpm-libs x86_64 4.8.0-47.el6 base 316 k rpm-python x86_64 4.8.0-47.el6 base 59 k samba-common x86_64 3.6.23-20.el6 base 10 M samba-winbind x86_64 3.6.23-20.el6 base 2.2 M samba-winbind-clients x86_64 3.6.23-20.el6 base 2.0 M selinux-policy noarch 3.7.19-279.el6_7.5 updates 882 k selinux-policy-targeted noarch 3.7.19-279.el6_7.5 updates 3.1 M sg3_utils-libs x86_64 1.28-8.el6 base 53 k sos noarch 3.2-28.el6.centos base 306 k spice-vdagent x86_64 0.14.0-9.el6 base 63 k sqlite x86_64 3.6.20-1.el6_7.2 updates 300 k strace x86_64 4.8-10.el6 base 262 k sudo x86_64 1.8.6p3-20.el6_7 updates 707 k system-config-users noarch 1.2.106-8.el6 base 329 k systemtap-runtime x86_64 2.7-2.el6 base 205 k sysvinit-tools x86_64 2.87-6.dsf.el6 base 60 k tar x86_64 2:1.23-13.el6 base 809 k tcpdump x86_64 14:4.0.0-5.20090921gitdf3cb4.2.el6 base 338 k time x86_64 1.7-38.el6 base 26 k tzdata noarch 2015f-1.el6 updates 442 k udev x86_64 147-2.63.el6 base 355 k udisks x86_64 1.0.1-9.el6 base 169 k vim-common x86_64 2:7.4.629-5.el6 base 6.7 M vim-enhanced x86_64 2:7.4.629-5.el6 base 1.0 M vim-minimal x86_64 2:7.4.629-5.el6 base 422 k wireless-tools x86_64 1:29-6.el6 base 93 k wpa_supplicant x86_64 1:0.7.3-6.el6 base 366 k xcb-util x86_64 0.3.6-6.el6 base 26 k xkeyboard-config noarch 2.11-3.el6 base 757 k xorg-x11-drv-ati x86_64 7.5.99-3.el6 base 157 k xorg-x11-drv-ati-firmware noarch 7.5.99-3.el6 base 1.1 M xorg-x11-drv-intel x86_64 2.99.911-8.el6 base 602 k xorg-x11-drv-mach64 x86_64 6.9.4-9.el6 base 66 k xorg-x11-drv-mga x86_64 1.6.3-6.el6 base 74 k xorg-x11-drv-qxl x86_64 0.1.1-17.el6 base 93 k xorg-x11-fonts-75dpi noarch 7.2-11.el6 base 2.8 M xorg-x11-fonts-misc noarch 7.2-11.el6 base 5.8 M xorg-x11-server-Xorg x86_64 1.15.0-36.el6.centos base 1.3 M xorg-x11-server-common x86_64 1.15.0-36.el6.centos base 50 k yum noarch 3.2.29-69.el6.centos base 1.0 M 依存性関連でのインストールをします。: augeas-libs x86_64 1.0.0-10.el6 base 314 k json-c x86_64 0.11-12.el6 base 51 k libreport-filesystem x86_64 2.0.9-24.el6.centos base 13 k rp-pppoe x86_64 3.10-11.el6 base 97 k satyr x86_64 0.16-2.el6 base 94 k vim-filesystem x86_64 2:7.4.629-5.el6 base 15 k トランザクションの要約 ================================================================================ インストール 7 パッケージ アップグレード 251 パッケージ 総ダウンロード容量: 315 M これでいいですか? [y/N] |
アップデートしても問題ないと思うのですが…どうなんでしょうか?
壊れてもここまでなら最初から作業をしても時間は掛からないからアップデートしてみました。
1 2 3 4 5 6 7 8 9 10 |
警告: rpmts_HdrFromFdno: ヘッダ V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 Importing GPG key 0xC105B9DE: Userid : CentOS-6 Key (CentOS 6 Official Signing Key) <centos-6-key@centos.org> Package: centos-release-6-6.el6.centos.12.2.x86_64 (@base/$releasever) From : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 これでいいですか? [y/N]y warning: rpmts_HdrFromFdno: Header V4 DSA/SHA1 Signature, key ID cd2efd2a: NOKEY Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-percona GPG 鍵の取得に失敗しました: [Errno 14] Could not open/read file:///etc/pki/rpm-gpg/RPM-GPG-KEY-percona |
rpm-gpg/RPM-GPG-KEY-perconaの取得に失敗してアップデートできません。
それなら事前にGPG 鍵をインストールしておきます。
1 |
[root@localhost ~]# rpm --import http://www.percona.com/redir/downloads/percona-release/RPM-GPG-KEY-percona |
これで無事に全てのアップデートが完了しましたがPandora FMSは正常に動作するのでしょうか?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 |
インストール: kernel.x86_64 0:2.6.32-573.3.1.el6 依存性関連をインストールしました: augeas-libs.x86_64 0:1.0.0-10.el6 json-c.x86_64 0:0.11-12.el6 libreport-filesystem.x86_64 0:2.0.9-24.el6.centos rp-pppoe.x86_64 0:3.10-11.el6 satyr.x86_64 0:0.16-2.el6 vim-filesystem.x86_64 2:7.4.629-5.el6 更新: NetworkManager.x86_64 1:0.8.1-99.el6 NetworkManager-glib.x86_64 1:0.8.1-99.el6 NetworkManager-gnome.x86_64 1:0.8.1-99.el6 PackageKit.x86_64 0:0.5.8-25.el6 PackageKit-device-rebind.x86_64 0:0.5.8-25.el6 PackageKit-glib.x86_64 0:0.5.8-25.el6 PackageKit-gtk-module.x86_64 0:0.5.8-25.el6 PackageKit-yum.x86_64 0:0.5.8-25.el6 PackageKit-yum-plugin.x86_64 0:0.5.8-25.el6 Percona-Server-client-55.x86_64 0:5.5.45-rel37.4.el6 Percona-Server-server-55.x86_64 0:5.5.45-rel37.4.el6 Percona-Server-shared-55.x86_64 0:5.5.45-rel37.4.el6 anaconda.x86_64 0:13.21.239-1.el6.centos at.x86_64 0:3.1.10-48.el6 authconfig.x86_64 0:6.1.12-23.el6 authconfig-gtk.x86_64 0:6.1.12-23.el6 bash.x86_64 0:4.1.2-33.el6 bind-libs.x86_64 32:9.8.2-0.37.rc1.el6_7.4 bind-utils.x86_64 32:9.8.2-0.37.rc1.el6_7.4 binutils.x86_64 0:2.20.51.0.2-5.43.el6 biosdevname.x86_64 0:0.6.2-1.el6 centos-release.x86_64 0:6-7.el6.centos.12.3 chkconfig.x86_64 0:1.3.49.3-5.el6 cpuspeed.x86_64 1:1.5-22.el6 cronie.x86_64 0:1.4.4-15.el6 cronie-anacron.x86_64 0:1.4.4-15.el6 cups.x86_64 1:1.4.2-72.el6 cups-libs.x86_64 1:1.4.2-72.el6 curl.x86_64 0:7.19.7-46.el6 dejavu-fonts-common.noarch 0:2.33-1.el6 dejavu-lgc-sans-mono-fonts.noarch 0:2.33-1.el6 dejavu-sans-fonts.noarch 0:2.33-1.el6 dejavu-sans-mono-fonts.noarch 0:2.33-1.el6 dejavu-serif-fonts.noarch 0:2.33-1.el6 device-mapper.x86_64 0:1.02.95-3.el6_7.2 device-mapper-event.x86_64 0:1.02.95-3.el6_7.2 device-mapper-event-libs.x86_64 0:1.02.95-3.el6_7.2 device-mapper-libs.x86_64 0:1.02.95-3.el6_7.2 device-mapper-multipath.x86_64 0:0.4.9-87.el6 device-mapper-multipath-libs.x86_64 0:0.4.9-87.el6 dhclient.x86_64 12:4.1.1-49.P1.el6.centos dhcp-common.x86_64 12:4.1.1-49.P1.el6.centos dmidecode.x86_64 1:2.12-6.el6 dracut.noarch 0:004-388.el6 dracut-kernel.noarch 0:004-388.el6 e2fsprogs.x86_64 0:1.41.12-22.el6 e2fsprogs-libs.x86_64 0:1.41.12-22.el6 efibootmgr.x86_64 0:0.5.4-13.el6 elfutils-libelf.x86_64 0:0.161-3.el6 elfutils-libs.x86_64 0:0.161-3.el6 enchant.x86_64 1:1.5.0-5.el6 ethtool.x86_64 2:3.5-6.el6 evolution-data-server.x86_64 0:2.32.3-23.el6 firefox.x86_64 0:38.2.1-1.el6.centos fprintd.x86_64 0:0.1-22.git04fd09cfa.el6 fprintd-pam.x86_64 0:0.1-22.git04fd09cfa.el6 gdbm.x86_64 0:1.8.0-38.el6 gdbm-devel.x86_64 0:1.8.0-38.el6 gdk-pixbuf2.x86_64 0:2.24.1-6.el6_7 ghostscript.x86_64 0:8.70-21.el6 glibc.i686 0:2.12-1.166.el6_7.1 glibc.x86_64 0:2.12-1.166.el6_7.1 glibc-common.x86_64 0:2.12-1.166.el6_7.1 glibc-devel.x86_64 0:2.12-1.166.el6_7.1 glibc-headers.x86_64 0:2.12-1.166.el6_7.1 glx-utils.x86_64 0:10.4.3-1.el6 gnome-settings-daemon.x86_64 0:2.28.2-31.el6 gnutls.x86_64 0:2.8.5-18.el6 grep.x86_64 0:2.20-3.el6 grub.x86_64 1:0.97-94.el6 gstreamer-plugins-good.x86_64 0:0.10.23-3.el6 gvfs.x86_64 0:1.4.3-22.el6 gvfs-archive.x86_64 0:1.4.3-22.el6 gvfs-fuse.x86_64 0:1.4.3-22.el6 gvfs-smb.x86_64 0:1.4.3-22.el6 hal-info.noarch 0:20090716-5.el6 httpd.x86_64 0:2.2.15-47.el6.centos httpd-tools.x86_64 0:2.2.15-47.el6.centos hwdata.noarch 0:0.233-14.1.el6 initscripts.x86_64 0:9.03.49-1.el6.centos iproute.x86_64 0:2.6.32-45.el6 iptables.x86_64 0:1.4.7-16.el6 iptables-ipv6.x86_64 0:1.4.7-16.el6 iputils.x86_64 0:20071127-20.el6 irqbalance.x86_64 2:1.0.7-5.el6 iscsi-initiator-utils.x86_64 0:6.2.0.873-14.el6 kernel-firmware.noarch 0:2.6.32-573.3.1.el6 kernel-headers.x86_64 0:2.6.32-573.3.1.el6 kexec-tools.x86_64 0:2.0.0-286.el6 kpartx.x86_64 0:0.4.9-87.el6 krb5-libs.x86_64 0:1.10.3-42.el6 libX11.x86_64 0:1.6.0-6.el6 libX11-common.noarch 0:1.6.0-6.el6 libXfont.x86_64 0:1.4.5-5.el6_7 libcom_err.x86_64 0:1.41.12-22.el6 libcurl.x86_64 0:7.19.7-46.el6 libdrm.x86_64 0:2.4.59-2.el6 libgcc.x86_64 0:4.4.7-16.el6 libgomp.x86_64 0:4.4.7-16.el6 libgudev1.x86_64 0:147-2.63.el6 libpcap.x86_64 14:1.4.0-4.20130826git2dbcaa1.el6 libreport.x86_64 0:2.0.9-24.el6.centos libreport-compat.x86_64 0:2.0.9-24.el6.centos libreport-gtk.x86_64 0:2.0.9-24.el6.centos libreport-newt.x86_64 0:2.0.9-24.el6.centos libreport-plugin-reportuploader.x86_64 0:2.0.9-24.el6.centos libreport-plugin-rhtsupport.x86_64 0:2.0.9-24.el6.centos libreport-python.x86_64 0:2.0.9-24.el6.centos libsemanage.x86_64 0:2.0.43-5.1.el6 libsmbclient.x86_64 0:3.6.23-20.el6 libsoup.x86_64 0:2.34.3-3.el6_6 libss.x86_64 0:1.41.12-22.el6 libstdc++.x86_64 0:4.4.7-16.el6 libudev.x86_64 0:147-2.63.el6 libuser.x86_64 0:0.56.13-8.el6_7 libuser-python.x86_64 0:0.56.13-8.el6_7 libxcb.x86_64 0:1.9.1-3.el6 libxml2.x86_64 0:2.7.6-20.el6 libxml2-python.x86_64 0:2.7.6-20.el6 livecd-tools.x86_64 1:13.4.8-1.el6 logrotate.x86_64 0:3.7.8-23.el6 lshw.x86_64 0:B.02.17-3.el6 lsof.x86_64 0:4.82-5.el6 lvm2.x86_64 0:2.02.118-3.el6_7.2 lvm2-libs.x86_64 0:2.02.118-3.el6_7.2 man-pages-overrides.noarch 0:6.7.5-1.el6 mdadm.x86_64 0:3.3.2-5.el6 mesa-dri-drivers.x86_64 0:10.4.3-1.el6 mesa-dri-filesystem.x86_64 0:10.4.3-1.el6 mesa-libEGL.x86_64 0:10.4.3-1.el6 mesa-libGL.x86_64 0:10.4.3-1.el6 mesa-libGLU.x86_64 0:10.4.3-1.el6 mesa-libgbm.x86_64 0:10.4.3-1.el6 microcode_ctl.x86_64 1:1.17-20.el6 mlocate.x86_64 0:0.22.2-6.el6 module-init-tools.x86_64 0:3.9-25.el6 ncurses.x86_64 0:5.7-4.20090207.el6 ncurses-base.x86_64 0:5.7-4.20090207.el6 ncurses-libs.x86_64 0:5.7-4.20090207.el6 net-snmp.x86_64 1:5.5-54.el6_7.1 net-snmp-libs.x86_64 1:5.5-54.el6_7.1 net-snmp-utils.x86_64 1:5.5-54.el6_7.1 nss.x86_64 0:3.19.1-3.el6_6 nss-softokn.x86_64 0:3.14.3-23.el6_7 nss-softokn-freebl.i686 0:3.14.3-23.el6_7 nss-softokn-freebl.x86_64 0:3.14.3-23.el6_7 nss-sysinit.x86_64 0:3.19.1-3.el6_6 nss-tools.x86_64 0:3.19.1-3.el6_6 nss-util.x86_64 0:3.19.1-1.el6_6 ntp.x86_64 0:4.2.6p5-5.el6.centos ntpdate.x86_64 0:4.2.6p5-5.el6.centos ntsysv.x86_64 0:1.3.49.3-5.el6 openjpeg-libs.x86_64 0:1.3-11.el6 openldap.x86_64 0:2.4.40-5.el6 openssh.x86_64 0:5.3p1-112.el6_7 openssh-askpass.x86_64 0:5.3p1-112.el6_7 openssh-clients.x86_64 0:5.3p1-112.el6_7 openssh-server.x86_64 0:5.3p1-112.el6_7 openssl.x86_64 0:1.0.1e-42.el6 pam.i686 0:1.1.1-20.el6_7.1 pam.x86_64 0:1.1.1-20.el6_7.1 pam_passwdqc.x86_64 0:1.0.5-8.el6 parted.x86_64 0:2.1-29.el6 pcre.x86_64 0:7.8-7.el6 perl.x86_64 4:5.10.1-141.el6 perl-CGI.x86_64 0:3.51-141.el6 perl-Compress-Raw-Zlib.x86_64 1:2.021-141.el6 perl-Compress-Zlib.x86_64 0:2.021-141.el6 perl-ExtUtils-MakeMaker.x86_64 0:6.55-141.el6 perl-ExtUtils-ParseXS.x86_64 1:2.2003.0-141.el6 perl-IO-Compress-Base.x86_64 0:2.021-141.el6 perl-IO-Compress-Zlib.x86_64 0:2.021-141.el6 perl-Module-Pluggable.x86_64 1:3.90-141.el6 perl-Pod-Escapes.x86_64 1:1.04-141.el6 perl-Pod-Simple.x86_64 1:3.13-141.el6 perl-Test-Harness.x86_64 0:3.17-141.el6 perl-Test-Simple.x86_64 0:0.92-141.el6 perl-Time-HiRes.x86_64 4:1.9721-141.el6 perl-devel.x86_64 4:5.10.1-141.el6 perl-libs.x86_64 4:5.10.1-141.el6 perl-version.x86_64 3:0.77-141.el6 php.x86_64 0:5.3.3-46.el6_6 php-cli.x86_64 0:5.3.3-46.el6_6 php-common.x86_64 0:5.3.3-46.el6_6 php-gd.x86_64 0:5.3.3-46.el6_6 php-ldap.x86_64 0:5.3.3-46.el6_6 php-mbstring.x86_64 0:5.3.3-46.el6_6 php-mysql.x86_64 0:5.3.3-46.el6_6 php-pdo.x86_64 0:5.3.3-46.el6_6 php-snmp.x86_64 0:5.3.3-46.el6_6 pinentry.x86_64 0:0.7.6-8.el6 policycoreutils.x86_64 0:2.0.83-24.el6 polkit.x86_64 0:0.96-11.el6 polkit-desktop-policy.noarch 0:0.96-11.el6 ppp.x86_64 0:2.4.5-10.el6 procps.x86_64 0:3.2.8-33.el6 pulseaudio.x86_64 0:0.9.21-21.el6 pulseaudio-gdm-hooks.x86_64 0:0.9.21-21.el6 pulseaudio-libs.x86_64 0:0.9.21-21.el6 pulseaudio-libs-glib2.x86_64 0:0.9.21-21.el6 pulseaudio-module-gconf.x86_64 0:0.9.21-21.el6 pulseaudio-module-x11.x86_64 0:0.9.21-21.el6 pulseaudio-utils.x86_64 0:0.9.21-21.el6 pykickstart.noarch 0:1.74.20-1.el6 python.x86_64 0:2.6.6-64.el6 python-imgcreate.x86_64 1:13.4.8-1.el6 python-libs.x86_64 0:2.6.6-64.el6 python-nss.x86_64 0:0.16.0-1.el6 quota.x86_64 1:3.17-23.el6 rng-tools.x86_64 0:5-1.el6 rpm.x86_64 0:4.8.0-47.el6 rpm-libs.x86_64 0:4.8.0-47.el6 rpm-python.x86_64 0:4.8.0-47.el6 samba-common.x86_64 0:3.6.23-20.el6 samba-winbind.x86_64 0:3.6.23-20.el6 samba-winbind-clients.x86_64 0:3.6.23-20.el6 selinux-policy.noarch 0:3.7.19-279.el6_7.5 selinux-policy-targeted.noarch 0:3.7.19-279.el6_7.5 sg3_utils-libs.x86_64 0:1.28-8.el6 sos.noarch 0:3.2-28.el6.centos spice-vdagent.x86_64 0:0.14.0-9.el6 sqlite.x86_64 0:3.6.20-1.el6_7.2 strace.x86_64 0:4.8-10.el6 sudo.x86_64 0:1.8.6p3-20.el6_7 system-config-users.noarch 0:1.2.106-8.el6 systemtap-runtime.x86_64 0:2.7-2.el6 sysvinit-tools.x86_64 0:2.87-6.dsf.el6 tar.x86_64 2:1.23-13.el6 tcpdump.x86_64 14:4.0.0-5.20090921gitdf3cb4.2.el6 time.x86_64 0:1.7-38.el6 tzdata.noarch 0:2015f-1.el6 udev.x86_64 0:147-2.63.el6 udisks.x86_64 0:1.0.1-9.el6 vim-common.x86_64 2:7.4.629-5.el6 vim-enhanced.x86_64 2:7.4.629-5.el6 vim-minimal.x86_64 2:7.4.629-5.el6 wireless-tools.x86_64 1:29-6.el6 wpa_supplicant.x86_64 1:0.7.3-6.el6 xcb-util.x86_64 0:0.3.6-6.el6 xkeyboard-config.noarch 0:2.11-3.el6 xorg-x11-drv-ati.x86_64 0:7.5.99-3.el6 xorg-x11-drv-ati-firmware.noarch 0:7.5.99-3.el6 xorg-x11-drv-intel.x86_64 0:2.99.911-8.el6 xorg-x11-drv-mach64.x86_64 0:6.9.4-9.el6 xorg-x11-drv-mga.x86_64 0:1.6.3-6.el6 xorg-x11-drv-qxl.x86_64 0:0.1.1-17.el6 xorg-x11-fonts-75dpi.noarch 0:7.2-11.el6 xorg-x11-fonts-misc.noarch 0:7.2-11.el6 xorg-x11-server-Xorg.x86_64 0:1.15.0-36.el6.centos xorg-x11-server-common.x86_64 0:1.15.0-36.el6.centos yum.noarch 0:3.2.29-69.el6.centos 完了しました! |