关于运行nutch报错:unzipBestEffortreturnednull和unmatched报错的问题就给大家分享到这里,感谢你花时间阅读本站内容,更多关于..ld:symbol(s)notfo
关于运行nutch报错:unzipBestEffort returned null和unmatched报错的问题就给大家分享到这里,感谢你花时间阅读本站内容,更多关于.. ld: symbol(s) not found for architecture x86_64 collect2: ld returned 1 exit status make[2]: ***、.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2、@Cacheable Null key returned for cache 异常的解决方法、centos6 系统 yum 安装报错 The requested URL returned error: 404 Not Found等相关知识的信息别忘了在本站进行查找喔。
本文目录一览:- 运行nutch报错:unzipBestEffort returned null(unmatched报错)
- .. ld: symbol(s) not found for architecture x86_64 collect2: ld returned 1 exit status make[2]: ***
- .TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2
- @Cacheable Null key returned for cache 异常的解决方法
- centos6 系统 yum 安装报错 The requested URL returned error: 404 Not Found
运行nutch报错:unzipBestEffort returned null(unmatched报错)
报错信息:fetch of http://szs.mof.gov.cn/zhengwuxinxi/zhengcefabu/201402/t20140224_1046354.html failed with: java.io.IOException: unzipBestEffort returned null
完整的报错信息为:
2014-03-12 16:48:38,031 ERROR http.Http - Failed to get protocol output
java.io.IOException: unzipBestEffort returned null
at org.apache.nutch.protocol.http.api.HttpBase.processGzipEncoded(HttpBase.java:317)
at org.apache.nutch.protocol.http.HttpResponse.<init>(HttpResponse.java:164)
at org.apache.nutch.protocol.http.Http.getResponse(Http.java:64)
at org.apache.nutch.protocol.http.api.HttpBase.getProtocolOutput(HttpBase.java:140)
at org.apache.nutch.fetcher.Fetcher$FetcherThread.run(Fetcher.java:703)
2014-03-12 16:48:38,031 INFO fetcher.Fetcher - fetch of http://szs.mof.gov.cn/zhengwuxinxi/zhengcefabu/201402/t20140224_1046354.html failed with: java.io.IOException: unzipBestEffort returned null
2014-03-12 16:48:38,031 INFO fetcher.Fetcher - -finishing thread FetcherThread, activeThreads=0
由此可知抛出异常的代码位于src/plugin/lib-http/src/java/org/apache/nutch/protocol/http/api/HttpBase.java(lib-http插件)类的processGzipEncoded方法的317行:
byte[] content;
if (getMaxContent() >= 0) {
content = GZIPUtils.unzipBestEffort(compressed, getMaxContent());
} else {
content = GZIPUtils.unzipBestEffort(compressed);
}
if (content == null)
throw new IOException("unzipBestEffort returned null");
nutch1.7\src\plugin\protocol-http\src\java\org\apache\nutch\protocol\http\HttpResponse.java(protocol-http插件)的164行调用了processGzipEncoded方法:
readPlainContent(in);
String contentEncoding = getHeader(Response.CONTENT_ENCODING);
if ("gzip".equals(contentEncoding) || "x-gzip".equals(contentEncoding)) {
content = http.processGzipEncoded(content, url);
} else if ("deflate".equals(contentEncoding)) {
content = http.processDeflateEncoded(content, url);
} else {
if (Http.LOG.isTraceEnabled()) {
Http.LOG.trace("fetched " + content.length + " bytes from " + url);
}
}
通过Firefox的Firebug工具可查看该URL的响应头为Content-Encoding:gzip,Transfer-Encoding:chunked。
解决方法如下:
1、修改文件nutch1.7\src\java\org\apache\nutch\metadata\HttpHeaders.java,增加一个field:
public final static String TRANSFER_ENCODING = "Transfer-Encoding";
2、修改文件nutch1.7\src\plugin\protocol-http\src\java\org\apache\nutch\protocol\http\HttpResponse.java,替换第160行代码readPlainContent(in);为如下代码
String transferEncoding = getHeader(Response.TRANSFER_ENCODING);
if(transferEncoding != null && "chunked".equalsIgnoreCase(transferEncoding.trim())){
readChunkedContent(in, line);
}else{
readPlainContent(in);
}
3、http内容长度限制不能使用负值,只能使用一个大整数:
<property>
<name>http.content.limit</name>
<value>655360000</value>
</property>
4、因为修改了核心代码和插件代码,所以需要重新编译打包发布,执行nutch1.7\build.xml的默认target:runtime
cd nutch1.7
ant
提交BUG:
1、https://issues.apache.org/jira/browse/NUTCH-1736
2、https://github.com/apache/nutch/pull/3
.. ld: symbol(s) not found for architecture x86_64 collect2: ld returned 1 exit status make[2]: ***
./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-http_stub_status_module --add-module=/usr/local/ngx_devel_kit-0.3.0 --add-module=/usr/local/lua-nginx-module-0.10.6 --add-module=/usr/local/echo-nginx-module-0.60
--with-cc-opt="-I/usr/local/Cellar/pcre/8.39/include" --with-ld-opt="-L/usr/local/Cellar/pcre/8.39/lib"
困扰了两天的问题,终于解决了。。
增加这两个参数
--with-cc-opt="-I/usr/local/Cellar/pcre/8.39/include" --with-ld-opt="-L/usr/local/Cellar/pcre/8.39/lib"
.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2
Caused by: org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2
at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:81)
at sun.reflect.GeneratedMethodAccessor130.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
... 122 more
@Cacheable Null key returned for cache 异常的解决方法
#####spring+ehcache 缓存 @Cacheable 等注解在接口 interface 上报 @Cacheable Null key returned for cache 异常的解决方法
@Cacheable(value ="answerCache", key = "#questionId")
List<AnswerSet> getAnswerListByQuestion(int questionId, int answerId);
解决方法,key 使用变量索引
@Cacheable(value ="answerCache", key = "#p0")
List<AnswerSet> getAnswerListByQuestion(int questionId, int answerId);
###### 原因:猜想可能是 jdk 在 proxy 的时候无法解析得到 interface 中的变量名
centos6 系统 yum 安装报错 The requested URL returned error: 404 Not Found
yum 安装文件失败,报错 The requested URL returned error: 404 Not Found
处理方式如下:
[jumpserver@SX-newTest-Tomcat ~]$ sudo yum install -y clamav
Loaded plugins: fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
Resolving Dependencies
--> Running transaction check
---> Package clamav.x86_64 0:0.99.4-1.el6 will be installed
--> Processing Dependency: clamav-db = 0.99.4-1.el6 for package: clamav-0.99.4-1.el6.x86_64
--> Running transaction check
---> Package clamav-db.x86_64 0:0.99.4-1.el6 will be installed
--> Finished Dependency Resolution
Dependencies Resolved
=============================================================================================================================================================
Package Arch Version Repository Size
=============================================================================================================================================================
Installing:
clamav x86_64 0.99.4-1.el6 epel 4.3 M
Installing for dependencies:
clamav-db x86_64 0.99.4-1.el6 epel 155 M
Transaction Summary
=============================================================================================================================================================
Install 2 Package(s)
Total download size: 160 M
Installed size: 168 M
Downloading Packages:
http://mirrors.cloud.aliyuncs.com/epel/6/x86_64/Packages/c/clamav-0.99.4-1.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
Trying other mirror.
To address this issue please refer to the below knowledge base article
https://access.redhat.com/articles/1320623
If above article doesn''t help to resolve this issue please open a ticket with Red Hat Support.
http://mirrors.cloud.aliyuncs.com/epel/6/x86_64/Packages/c/clamav-db-0.99.4-1.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
Trying other mirror.
Error Downloading Packages:
clamav-db-0.99.4-1.el6.x86_64: failure: Packages/c/clamav-db-0.99.4-1.el6.x86_64.rpm from epel: [Errno 256] No more mirrors to try.
clamav-0.99.4-1.el6.x86_64: failure: Packages/c/clamav-0.99.4-1.el6.x86_64.rpm from epel: [Errno 256] No more mirrors to try.
系统是 6.9
[jumpserver@SX-newTest-Tomcat ~]$ cat /etc/redhat-release
CentOS release 6.9 (Final)
更新 yum 源
[jumpserver@SX-newTest-Tomcat ~]$ sudo yum clean all
Loaded plugins: fastestmirror
Cleaning repos: base epel extras updates
Cleaning up Everything
Cleaning up list of fastest mirrors
[jumpserver@SX-newTest-Tomcat ~]$ sudo yum makecache
Loaded plugins: fastestmirror
Determining fastest mirrors
base | 3.7 kB 00:00
base/group_gz | 242 kB 00:00
base/filelists_db | 6.4 MB 00:00
base/primary_db | 4.7 MB 00:00
base/other_db | 2.8 MB 00:00
epel | 3.2 kB 00:00
epel/group_gz | 71 kB 00:00
epel/filelists | 7.3 MB 00:00
epel/updateinfo | 784 kB 00:00
epel/prestodelta | 75 B 00:00
epel/primary | 3.2 MB 00:00
epel/other | 2.1 MB 00:00
epel: [################ ############ epel 12516/12516
epel: [######################### epel 12516/12516
epel 12516/12516
extras | 3.4 kB 00:00
extras/filelists_db | 24 kB 00:00
extras/prestodelta | 1.1 kB 00:00
extras/primary_db | 25 kB 00:00
extras/other_db | 28 kB 00:00
updates | 3.4 kB 00:00
updates/filelists_db | 484 kB 00:00
updates/prestodelta | 17 kB 00:00
updates/primary_db | 667 kB 00:00
updates/other_db | 8.5 MB 00:00
Metadata Cache Created
[jumpserver@SX-newTest-Tomcat ~]$ sudo yum update
Loaded plugins: fastestmirror
Setting up Update Process
Loading mirror speeds from cached hostfile
Resolving Dependencies
--> Running transaction check
---> Package binutils.x86_64 0:2.20.51.0.2-5.47.el6_9.1 will be updated
---> Package binutils.x86_64 0:2.20.51.0.2-5.48.el6 will be an update
---> Package ca-certificates.noarch 0:2017.2.14-65.0.1.el6_9 will be updated
---> Package ca-certificates.noarch 0:2018.2.22-65.1.el6 will be an update
---> Package centos-release.x86_64 0:6-9.el6.12.3 will be updated
---> Package centos-release.x86_64 0:6-10.el6.centos.12.3 will be an update
---> Package coreutils.x86_64 0:8.4-46.el6 will be updated
---> Package coreutils.x86_64 0:8.4-47.el6 will be an update
---> Package coreutils-libs.x86_64 0:8.4-46.el6 will be updated
---> Package coreutils-libs.x86_64 0:8.4-47.el6 will be an update
---> Package cpp.x86_64 0:4.4.7-18.el6 will be updated
---> Package cpp.x86_64 0:4.4.7-23.el6 will be an update
---> Package dbus-libs.x86_64 1:1.2.24-8.el6_6 will be updated
---> Package dbus-libs.x86_64 1:1.2.24-9.el6 will be an update
---> Package device-mapper.x86_64 0:1.02.117-12.el6 will be updated
---> Package device-mapper.x86_64 0:1.02.117-12.el6_9.1 will be an update
---> Package device-mapper-event.x86_64 0:1.02.117-12.el6 will be updated
---> Package device-mapper-event.x86_64 0:1.02.117-12.el6_9.1 will be an update
---> Package device-mapper-event-libs.x86_64 0:1.02.117-12.el6 will be updated
---> Package device-mapper-event-libs.x86_64 0:1.02.117-12.el6_9.1 will be an update
---> Package device-mapper-libs.x86_64 0:1.02.117-12.el6 will be updated
---> Package device-mapper-libs.x86_64 0:1.02.117-12.el6_9.1 will be an update
---> Package device-mapper-multipath.x86_64 0:0.4.9-100.el6 will be updated
---> Package device-mapper-multipath.x86_64 0:0.4.9-106.el6 will be an update
---> Package device-mapper-multipath-libs.x86_64 0:0.4.9-100.el6 will be updated
---> Package device-mapper-multipath-libs.x86_64 0:0.4.9-106.el6 will be an update
---> Package device-mapper-persistent-data.x86_64 0:0.6.2-0.1.rc7.el6 will be updated
---> Package device-mapper-persistent-data.x86_64 0:0.6.2-0.2.rc7.el6 will be an update
---> Package dhclient.x86_64 12:4.1.1-53.P1.el6.centos.1 will be updated
---> Package dhclient.x86_64 12:4.1.1-61.P1.el6.centos will be an update
---> Package dhcp-common.x86_64 12:4.1.1-53.P1.el6.centos.1 will be updated
---> Package dhcp-common.x86_64 12:4.1.1-61.P1.el6.centos will be an update
---> Package dracut.noarch 0:004-409.el6_8.2 will be updated
---> Package dracut.noarch 0:004-411.el6 will be an update
---> Package dracut-kernel.noarch 0:004-409.el6_8.2 will be updated
---> Package dracut-kernel.noarch 0:004-411.el6 will be an update
---> Package e2fsprogs.x86_64 0:1.41.12-23.el6 will be updated
---> Package e2fsprogs.x86_64 0:1.41.12-24.el6 will be an update
---> Package e2fsprogs-libs.x86_64 0:1.41.12-23.el6 will be updated
---> Package e2fsprogs-libs.x86_64 0:1.41.12-24.el6 will be an update
---> Package gcc.x86_64 0:4.4.7-18.el6 will be updated
---> Package gcc.x86_64 0:4.4.7-23.el6 will be an update
---> Package gcc-c++.x86_64 0:4.4.7-18.el6 will be updated
---> Package gcc-c++.x86_64 0:4.4.7-23.el6 will be an update
---> Package glib2.x86_64 0:2.28.8-9.el6 will be updated
---> Package glib2.x86_64 0:2.28.8-10.el6 will be an update
---> Package glibc.x86_64 0:2.12-1.209.el6_9.2 will be updated
---> Package glibc.x86_64 0:2.12-1.212.el6 will be an update
---> Package glibc-common.x86_64 0:2.12-1.209.el6_9.2 will be updated
---> Package glibc-common.x86_64 0:2.12-1.212.el6 will be an update
---> Package glibc-devel.x86_64 0:2.12-1.209.el6_9.2 will be updated
---> Package glibc-devel.x86_64 0:2.12-1.212.el6 will be an update
---> Package glibc-headers.x86_64 0:2.12-1.209.el6_9.2 will be updated
---> Package glibc-headers.x86_64 0:2.12-1.212.el6 will be an update
---> Package gmp.x86_64 0:4.3.1-12.el6 will be updated
---> Package gmp.x86_64 0:4.3.1-13.el6 will be an update
---> Package gnupg2.x86_64 0:2.0.14-8.el6 will be updated
---> Package gnupg2.x86_64 0:2.0.14-9.el6_10 will be an update
---> Package hwdata.noarch 0:0.233-18.1.el6 will be updated
---> Package hwdata.noarch 0:0.233-20.1.el6 will be an update
---> Package initscripts.x86_64 0:9.03.58-1.el6.centos.1 will be updated
---> Package initscripts.x86_64 0:9.03.61-1.el6.centos will be an update
---> Package iproute.x86_64 0:2.6.32-54.el6 will be updated
---> Package iproute.x86_64 0:2.6.32-57.el6 will be an update
---> Package iptables.x86_64 0:1.4.7-16.el6 will be updated
---> Package iptables.x86_64 0:1.4.7-19.el6 will be an update
---> Package iptables-ipv6.x86_64 0:1.4.7-16.el6 will be updated
---> Package iptables-ipv6.x86_64 0:1.4.7-19.el6 will be an update
---> Package irqbalance.x86_64 2:1.0.7-8.el6 will be updated
---> Package irqbalance.x86_64 2:1.0.7-9.el6 will be an update
---> Package kernel.x86_64 0:2.6.32-754.2.1.el6 will be installed
---> Package kernel-firmware.noarch 0:2.6.32-696.10.1.el6 will be updated
---> Package kernel-firmware.noarch 0:2.6.32-754.2.1.el6 will be an update
---> Package kernel-headers.x86_64 0:2.6.32-696.10.1.el6 will be updated
---> Package kernel-headers.x86_64 0:2.6.32-754.2.1.el6 will be an update
---> Package kpartx.x86_64 0:0.4.9-100.el6 will be updated
---> Package kpartx.x86_64 0:0.4.9-106.el6 will be an update
---> Package libblkid.x86_64 0:2.17.2-12.28.el6 will be updated
---> Package libblkid.x86_64 0:2.17.2-12.28.el6_9.2 will be an update
---> Package libcom_err.x86_64 0:1.41.12-23.el6 will be updated
---> Package libcom_err.x86_64 0:1.41.12-24.el6 will be an update
---> Package libgcc.x86_64 0:4.4.7-18.el6 will be updated
---> Package libgcc.x86_64 0:4.4.7-23.el6 will be an update
---> Package libgomp.x86_64 0:4.4.7-18.el6 will be updated
---> Package libgomp.x86_64 0:4.4.7-23.el6 will be an update
---> Package libnih.x86_64 0:1.0.1-7.el6 will be updated
---> Package libnih.x86_64 0:1.0.1-8.el6 will be an update
---> Package libss.x86_64 0:1.41.12-23.el6 will be updated
---> Package libss.x86_64 0:1.41.12-24.el6 will be an update
---> Package libstdc++.x86_64 0:4.4.7-18.el6 will be updated
---> Package libstdc++.x86_64 0:4.4.7-23.el6 will be an update
---> Package libstdc++-devel.x86_64 0:4.4.7-18.el6 will be updated
---> Package libstdc++-devel.x86_64 0:4.4.7-23.el6 will be an update
---> Package libtirpc.x86_64 0:0.2.1-13.el6_9 will be updated
---> Package libtirpc.x86_64 0:0.2.1-15.el6 will be an update
---> Package libuuid.x86_64 0:2.17.2-12.28.el6 will be updated
---> Package libuuid.x86_64 0:2.17.2-12.28.el6_9.2 will be an update
---> Package lvm2.x86_64 0:2.02.143-12.el6 will be updated
---> Package lvm2.x86_64 0:2.02.143-12.el6_9.1 will be an update
---> Package lvm2-libs.x86_64 0:2.02.143-12.el6 will be updated
---> Package lvm2-libs.x86_64 0:2.02.143-12.el6_9.1 will be an update
---> Package nfs-utils.x86_64 1:1.2.3-75.el6 will be updated
---> Package nfs-utils.x86_64 1:1.2.3-78.el6 will be an update
---> Package nscd.x86_64 0:2.12-1.209.el6_9.2 will be updated
---> Package nscd.x86_64 0:2.12-1.212.el6 will be an update
---> Package nspr.x86_64 0:4.13.1-1.el6 will be updated
---> Package nspr.x86_64 0:4.19.0-1.el6 will be an update
---> Package nss.x86_64 0:3.28.4-3.el6_9 will be updated
---> Package nss.x86_64 0:3.36.0-8.el6 will be an update
---> Package nss-sysinit.x86_64 0:3.28.4-3.el6_9 will be updated
---> Package nss-sysinit.x86_64 0:3.36.0-8.el6 will be an update
---> Package nss-tools.x86_64 0:3.28.4-3.el6_9 will be updated
---> Package nss-tools.x86_64 0:3.36.0-8.el6 will be an update
---> Package nss-util.x86_64 0:3.28.4-1.el6_9 will be updated
---> Package nss-util.x86_64 0:3.36.0-1.el6 will be an update
---> Package ntp.x86_64 0:4.2.6p5-10.el6.centos.2 will be updated
---> Package ntp.x86_64 0:4.2.6p5-12.el6.centos.2 will be an update
---> Package ntpdate.x86_64 0:4.2.6p5-10.el6.centos.2 will be updated
---> Package ntpdate.x86_64 0:4.2.6p5-12.el6.centos.2 will be an update
---> Package openssh.x86_64 0:5.3p1-122.el6 will be updated
---> Package openssh.x86_64 0:5.3p1-123.el6_9 will be an update
---> Package openssh-clients.x86_64 0:5.3p1-122.el6 will be updated
---> Package openssh-clients.x86_64 0:5.3p1-123.el6_9 will be an update
---> Package openssh-server.x86_64 0:5.3p1-122.el6 will be updated
---> Package openssh-server.x86_64 0:5.3p1-123.el6_9 will be an update
---> Package patch.x86_64 0:2.6-6.el6 will be updated
---> Package patch.x86_64 0:2.6-8.el6_9 will be an update
---> Package procps.x86_64 0:3.2.8-45.el6_9.1 will be updated
---> Package procps.x86_64 0:3.2.8-45.el6_9.3 will be an update
---> Package python-setuptools.noarch 0:0.6.10-3.el6 will be updated
---> Package python-setuptools.noarch 0:0.6.10-4.el6_9 will be an update
---> Package rpcbind.x86_64 0:0.2.0-13.el6_9.1 will be updated
---> Package rpcbind.x86_64 0:0.2.0-16.el6 will be an update
---> Package rpm.x86_64 0:4.8.0-55.el6 will be updated
---> Package rpm.x86_64 0:4.8.0-59.el6 will be an update
---> Package rpm-libs.x86_64 0:4.8.0-55.el6 will be updated
---> Package rpm-libs.x86_64 0:4.8.0-59.el6 will be an update
---> Package rpm-python.x86_64 0:4.8.0-55.el6 will be updated
---> Package rpm-python.x86_64 0:4.8.0-59.el6 will be an update
---> Package rsyslog.x86_64 0:5.8.10-10.el6_6 will be updated
---> Package rsyslog.x86_64 0:5.8.10-12.el6 will be an update
---> Package selinux-policy.noarch 0:3.7.19-307.el6_9.2 will be updated
---> Package selinux-policy.noarch 0:3.7.19-312.el6 will be an update
---> Package selinux-policy-targeted.noarch 0:3.7.19-307.el6_9.2 will be updated
---> Package selinux-policy-targeted.noarch 0:3.7.19-312.el6 will be an update
---> Package sysstat.x86_64 0:9.0.4-33.el6 will be updated
---> Package sysstat.x86_64 0:9.0.4-33.el6_9.1 will be an update
---> Package tzdata.noarch 0:2017b-1.el6 will be updated
---> Package tzdata.noarch 0:2018e-3.el6 will be an update
---> Package upstart.x86_64 0:0.6.5-16.el6 will be updated
---> Package upstart.x86_64 0:0.6.5-17.el6 will be an update
---> Package util-linux-ng.x86_64 0:2.17.2-12.28.el6 will be updated
---> Package util-linux-ng.x86_64 0:2.17.2-12.28.el6_9.2 will be an update
---> Package yum-plugin-fastestmirror.noarch 0:1.1.30-40.el6 will be updated
---> Package yum-plugin-fastestmirror.noarch 0:1.1.30-41.el6 will be an update
--> Finished Dependency Resolution
Dependencies Resolved
=============================================================================================================================================================
Package Arch Version Repository Size
=============================================================================================================================================================
Installing:
kernel x86_64 2.6.32-754.2.1.el6 updates 32 M
Updating:
binutils x86_64 2.20.51.0.2-5.48.el6 base 2.8 M
ca-certificates noarch 2018.2.22-65.1.el6 base 930 k
centos-release x86_64 6-10.el6.centos.12.3 base 22 k
coreutils x86_64 8.4-47.el6 base 3.0 M
coreutils-libs x86_64 8.4-47.el6 base 52 k
cpp x86_64 4.4.7-23.el6 base 3.7 M
dbus-libs x86_64 1:1.2.24-9.el6 base 127 k
device-mapper x86_64 1.02.117-12.el6_9.1 base 218 k
device-mapper-event x86_64 1.02.117-12.el6_9.1 base 134 k
device-mapper-event-libs x86_64 1.02.117-12.el6_9.1 base 126 k
device-mapper-libs x86_64 1.02.117-12.el6_9.1 base 257 k
device-mapper-multipath x86_64 0.4.9-106.el6 base 133 k
device-mapper-multipath-libs x86_64 0.4.9-106.el6 base 204 k
device-mapper-persistent-data x86_64 0.6.2-0.2.rc7.el6 base 463 k
dhclient x86_64 12:4.1.1-61.P1.el6.centos updates 323 k
dhcp-common x86_64 12:4.1.1-61.P1.el6.centos updates 145 k
dracut noarch 004-411.el6 base 127 k
dracut-kernel noarch 004-411.el6 base 28 k
e2fsprogs x86_64 1.41.12-24.el6 base 554 k
e2fsprogs-libs x86_64 1.41.12-24.el6 base 121 k
gcc x86_64 4.4.7-23.el6 base 10 M
gcc-c++ x86_64 4.4.7-23.el6 base 4.7 M
glib2 x86_64 2.28.8-10.el6 base 1.7 M
glibc x86_64 2.12-1.212.el6 base 3.8 M
glibc-common x86_64 2.12-1.212.el6 base 14 M
glibc-devel x86_64 2.12-1.212.el6 base 991 k
glibc-headers x86_64 2.12-1.212.el6 base 620 k
gmp x86_64 4.3.1-13.el6 base 207 k
gnupg2 x86_64 2.0.14-9.el6_10 updates 1.6 M
hwdata noarch 0.233-20.1.el6 base 1.4 M
initscripts x86_64 9.03.61-1.el6.centos base 949 k
iproute x86_64 2.6.32-57.el6 base 386 k
iptables x86_64 1.4.7-19.el6 base 255 k
iptables-ipv6 x86_64 1.4.7-19.el6 base 103 k
irqbalance x86_64 2:1.0.7-9.el6 base 42 k
kernel-firmware noarch 2.6.32-754.2.1.el6 updates 29 M
kernel-headers x86_64 2.6.32-754.2.1.el6 updates 4.5 M
kpartx x86_64 0.4.9-106.el6 base 71 k
libblkid x86_64 2.17.2-12.28.el6_9.2 base 119 k
libcom_err x86_64 1.41.12-24.el6 base 38 k
libgcc x86_64 4.4.7-23.el6 base 104 k
libgomp x86_64 4.4.7-23.el6 base 135 k
libnih x86_64 1.0.1-8.el6 base 138 k
libss x86_64 1.41.12-24.el6 base 42 k
libstdc++ x86_64 4.4.7-23.el6 base 296 k
libstdc++-devel x86_64 4.4.7-23.el6 base 1.6 M
libtirpc x86_64 0.2.1-15.el6 base 82 k
libuuid x86_64 2.17.2-12.28.el6_9.2 base 72 k
lvm2 x86_64 2.02.143-12.el6_9.1 base 941 k
lvm2-libs x86_64 2.02.143-12.el6_9.1 base 1.0 M
nfs-utils x86_64 1:1.2.3-78.el6 base 336 k
nscd x86_64 2.12-1.212.el6 base 232 k
nspr x86_64 4.19.0-1.el6 base 114 k
nss x86_64 3.36.0-8.el6 base 865 k
nss-sysinit x86_64 3.36.0-8.el6 base 52 k
nss-tools x86_64 3.36.0-8.el6 base 460 k
nss-util x86_64 3.36.0-1.el6 base 72 k
ntp x86_64 4.2.6p5-12.el6.centos.2 base 600 k
ntpdate x86_64 4.2.6p5-12.el6.centos.2 base 79 k
openssh x86_64 5.3p1-123.el6_9 base 277 k
openssh-clients x86_64 5.3p1-123.el6_9 base 444 k
openssh-server x86_64 5.3p1-123.el6_9 base 329 k
patch x86_64 2.6-8.el6_9 base 91 k
procps x86_64 3.2.8-45.el6_9.3 updates 220 k
python-setuptools noarch 0.6.10-4.el6_9 base 336 k
rpcbind x86_64 0.2.0-16.el6 base 51 k
rpm x86_64 4.8.0-59.el6 base 906 k
rpm-libs x86_64 4.8.0-59.el6 base 318 k
rpm-python x86_64 4.8.0-59.el6 base 61 k
rsyslog x86_64 5.8.10-12.el6 base 650 k
selinux-policy noarch 3.7.19-312.el6 base 895 k
selinux-policy-targeted noarch 3.7.19-312.el6 base 3.1 M
sysstat x86_64 9.0.4-33.el6_9.1 base 234 k
tzdata noarch 2018e-3.el6 base 495 k
upstart x86_64 0.6.5-17.el6 base 177 k
util-linux-ng x86_64 2.17.2-12.28.el6_9.2 base 1.6 M
yum-plugin-fastestmirror noarch 1.1.30-41.el6 base 33 k
Transaction Summary
=============================================================================================================================================================
Install 1 Package(s)
Upgrade 77 Package(s)
Total download size: 138 M
Is this ok [y/N]: y
Downloading Packages:
(1/78): binutils-2.20.51.0.2-5.48.el6.x86_64.rpm | 2.8 MB 00:00
(2/78): ca-certificates-2018.2.22-65.1.el6.noarch.rpm | 930 kB 00:00
(3/78): centos-release-6-10.el6.centos.12.3.x86_64.rpm | 22 kB 00:00
(4/78): coreutils-8.4-47.el6.x86_64.rpm | 3.0 MB 00:00
(5/78): coreutils-libs-8.4-47.el6.x86_64.rpm | 52 kB 00:00
(6/78): cpp-4.4.7-23.el6.x86_64.rpm | 3.7 MB 00:00
(7/78): dbus-libs-1.2.24-9.el6.x86_64.rpm | 127 kB 00:00
(8/78): device-mapper-1.02.117-12.el6_9.1.x86_64.rpm | 218 kB 00:00
(9/78): device-mapper-event-1.02.117-12.el6_9.1.x86_64.rpm | 134 kB 00:00
(10/78): device-mapper-event-libs-1.02.117-12.el6_9.1.x86_64.rpm | 126 kB 00:00
(11/78): device-mapper-libs-1.02.117-12.el6_9.1.x86_64.rpm | 257 kB 00:00
(12/78): device-mapper-multipath-0.4.9-106.el6.x86_64.rpm | 133 kB 00:00
(13/78): device-mapper-multipath-libs-0.4.9-106.el6.x86_64.rpm | 204 kB 00:00
(14/78): device-mapper-persistent-data-0.6.2-0.2.rc7.el6.x86_64.rpm | 463 kB 00:00
(15/78): dhclient-4.1.1-61.P1.el6.centos.x86_64.rpm | 323 kB 00:00
(16/78): dhcp-common-4.1.1-61.P1.el6.centos.x86_64.rpm | 145 kB 00:00
(17/78): dracut-004-411.el6.noarch.rpm | 127 kB 00:00
(18/78): dracut-kernel-004-411.el6.noarch.rpm | 28 kB 00:00
(19/78): e2fsprogs-1.41.12-24.el6.x86_64.rpm | 554 kB 00:00
(20/78): e2fsprogs-libs-1.41.12-24.el6.x86_64.rpm | 121 kB 00:00
(21/78): gcc-4.4.7-23.el6.x86_64.rpm | 10 MB 00:00
(22/78): gcc-c++-4.4.7-23.el6.x86_64.rpm | 4.7 MB 00:00
(23/78): glib2-2.28.8-10.el6.x86_64.rpm | 1.7 MB 00:00
(24/78): glibc-2.12-1.212.el6.x86_64.rpm | 3.8 MB 00:00
(25/78): glibc-common-2.12-1.212.el6.x86_64.rpm | 14 MB 00:00
(26/78): glibc-devel-2.12-1.212.el6.x86_64.rpm | 991 kB 00:00
(27/78): glibc-headers-2.12-1.212.el6.x86_64.rpm | 620 kB 00:00
(28/78): gmp-4.3.1-13.el6.x86_64.rpm | 207 kB 00:00
(29/78): gnupg2-2.0.14-9.el6_10.x86_64.rpm | 1.6 MB 00:00
(30/78): hwdata-0.233-20.1.el6.noarch.rpm | 1.4 MB 00:00
(31/78): initscripts-9.03.61-1.el6.centos.x86_64.rpm | 949 kB 00:00
(32/78): iproute-2.6.32-57.el6.x86_64.rpm | 386 kB 00:00
(33/78): iptables-1.4.7-19.el6.x86_64.rpm | 255 kB 00:00
(34/78): iptables-ipv6-1.4.7-19.el6.x86_64.rpm | 103 kB 00:00
(35/78): irqbalance-1.0.7-9.el6.x86_64.rpm | 42 kB 00:00
(36/78): kernel-2.6.32-754.2.1.el6.x86_64.rpm | 32 MB 00:00
(37/78): kernel-firmware-2.6.32-754.2.1.el6.noarch.rpm | 29 MB 00:00
(38/78): kernel-headers-2.6.32-754.2.1.el6.x86_64.rpm | 4.5 MB 00:00
(39/78): kpartx-0.4.9-106.el6.x86_64.rpm | 71 kB 00:00
(40/78): libblkid-2.17.2-12.28.el6_9.2.x86_64.rpm | 119 kB 00:00
(41/78): libcom_err-1.41.12-24.el6.x86_64.rpm | 38 kB 00:00
(42/78): libgcc-4.4.7-23.el6.x86_64.rpm | 104 kB 00:00
(43/78): libgomp-4.4.7-23.el6.x86_64.rpm | 135 kB 00:00
(44/78): libnih-1.0.1-8.el6.x86_64.rpm | 138 kB 00:00
(45/78): libss-1.41.12-24.el6.x86_64.rpm | 42 kB 00:00
(46/78): libstdc++-4.4.7-23.el6.x86_64.rpm | 296 kB 00:00
(47/78): libstdc++-devel-4.4.7-23.el6.x86_64.rpm | 1.6 MB 00:00
(48/78): libtirpc-0.2.1-15.el6.x86_64.rpm | 82 kB 00:00
(49/78): libuuid-2.17.2-12.28.el6_9.2.x86_64.rpm | 72 kB 00:00
(50/78): lvm2-2.02.143-12.el6_9.1.x86_64.rpm | 941 kB 00:00
(51/78): lvm2-libs-2.02.143-12.el6_9.1.x86_64.rpm | 1.0 MB 00:00
(52/78): nfs-utils-1.2.3-78.el6.x86_64.rpm | 336 kB 00:00
(53/78): nscd-2.12-1.212.el6.x86_64.rpm | 232 kB 00:00
(54/78): nspr-4.19.0-1.el6.x86_64.rpm | 114 kB 00:00
(55/78): nss-3.36.0-8.el6.x86_64.rpm | 865 kB 00:00
(56/78): nss-sysinit-3.36.0-8.el6.x86_64.rpm | 52 kB 00:00
(57/78): nss-tools-3.36.0-8.el6.x86_64.rpm | 460 kB 00:00
(58/78): nss-util-3.36.0-1.el6.x86_64.rpm | 72 kB 00:00
(59/78): ntp-4.2.6p5-12.el6.centos.2.x86_64.rpm | 600 kB 00:00
(60/78): ntpdate-4.2.6p5-12.el6.centos.2.x86_64.rpm | 79 kB 00:00
(61/78): openssh-5.3p1-123.el6_9.x86_64.rpm | 277 kB 00:00
(62/78): openssh-clients-5.3p1-123.el6_9.x86_64.rpm | 444 kB 00:00
(63/78): openssh-server-5.3p1-123.el6_9.x86_64.rpm | 329 kB 00:00
(64/78): patch-2.6-8.el6_9.x86_64.rpm | 91 kB 00:00
(65/78): procps-3.2.8-45.el6_9.3.x86_64.rpm | 220 kB 00:00
(66/78): python-setuptools-0.6.10-4.el6_9.noarch.rpm | 336 kB 00:00
(67/78): rpcbind-0.2.0-16.el6.x86_64.rpm | 51 kB 00:00
(68/78): rpm-4.8.0-59.el6.x86_64.rpm | 906 kB 00:00
(69/78): rpm-libs-4.8.0-59.el6.x86_64.rpm | 318 kB 00:00
(70/78): rpm-python-4.8.0-59.el6.x86_64.rpm | 61 kB 00:00
(71/78): rsyslog-5.8.10-12.el6.x86_64.rpm | 650 kB 00:00
(72/78): selinux-policy-3.7.19-312.el6.noarch.rpm | 895 kB 00:00
(73/78): selinux-policy-targeted-3.7.19-312.el6.noarch.rpm | 3.1 MB 00:00
(74/78): sysstat-9.0.4-33.el6_9.1.x86_64.rpm | 234 kB 00:00
(75/78): tzdata-2018e-3.el6.noarch.rpm | 495 kB 00:00
(76/78): upstart-0.6.5-17.el6.x86_64.rpm | 177 kB 00:00
(77/78): util-linux-ng-2.17.2-12.28.el6_9.2.x86_64.rpm | 1.6 MB 00:00
(78/78): yum-plugin-fastestmirror-1.1.30-41.el6.noarch.rpm | 33 kB 00:00
-------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 43 MB/s | 138 MB 00:03
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Updating : libgcc-4.4.7-23.el6.x86_64 1/155
Updating : centos-release-6-10.el6.centos.12.3.x86_64 2/155
Updating : kernel-headers-2.6.32-754.2.1.el6.x86_64 3/155
Updating : kernel-firmware-2.6.32-754.2.1.el6.noarch 4/155
Updating : 12:dhcp-common-4.1.1-61.P1.el6.centos.x86_64 5/155
Updating : tzdata-2018e-3.el6.noarch 6/155
Updating : glibc-2.12-1.212.el6.x86_64 7/155
Updating : glibc-common-2.12-1.212.el6.x86_64 8/155
Updating : libcom_err-1.41.12-24.el6.x86_64 9/155
Updating : nspr-4.19.0-1.el6.x86_64 10/155
Updating : nss-util-3.36.0-1.el6.x86_64 11/155
Updating : libuuid-2.17.2-12.28.el6_9.2.x86_64 12/155
Updating : libblkid-2.17.2-12.28.el6_9.2.x86_64 13/155
Updating : libstdc++-4.4.7-23.el6.x86_64 14/155
Updating : gmp-4.3.1-13.el6.x86_64 15/155
Updating : coreutils-libs-8.4-47.el6.x86_64 16/155
Updating : coreutils-8.4-47.el6.x86_64 17/155
Updating : util-linux-ng-2.17.2-12.28.el6_9.2.x86_64 18/155
Updating : device-mapper-libs-1.02.117-12.el6_9.1.x86_64 19/155
Updating : device-mapper-1.02.117-12.el6_9.1.x86_64 20/155
Updating : device-mapper-event-libs-1.02.117-12.el6_9.1.x86_64 21/155
Updating : glib2-2.28.8-10.el6.x86_64 22/155
Updating : libtirpc-0.2.1-15.el6.x86_64 23/155
Updating : iptables-1.4.7-19.el6.x86_64 24/155
Updating : 1:dbus-libs-1.2.24-9.el6.x86_64 25/155
Updating : libnih-1.0.1-8.el6.x86_64 26/155
Updating : upstart-0.6.5-17.el6.x86_64 27/155
Updating : iproute-2.6.32-57.el6.x86_64 28/155
Updating : rpcbind-0.2.0-16.el6.x86_64 29/155
Updating : device-mapper-event-1.02.117-12.el6_9.1.x86_64 30/155
Updating : lvm2-libs-2.02.143-12.el6_9.1.x86_64 31/155
Updating : kpartx-0.4.9-106.el6.x86_64 32/155
Updating : device-mapper-multipath-libs-0.4.9-106.el6.x86_64 33/155
Updating : selinux-policy-3.7.19-312.el6.noarch 34/155
Updating : nss-3.36.0-8.el6.x86_64 35/155
Updating : nss-sysinit-3.36.0-8.el6.x86_64 36/155
Updating : rpm-libs-4.8.0-59.el6.x86_64 37/155
Updating : rpm-4.8.0-59.el6.x86_64 38/155
Updating : cpp-4.4.7-23.el6.x86_64 39/155
Updating : libstdc++-devel-4.4.7-23.el6.x86_64 40/155
Updating : e2fsprogs-libs-1.41.12-24.el6.x86_64 41/155
Updating : libss-1.41.12-24.el6.x86_64 42/155
Updating : glibc-headers-2.12-1.212.el6.x86_64 43/155
Updating : glibc-devel-2.12-1.212.el6.x86_64 44/155
Updating : binutils-2.20.51.0.2-5.48.el6.x86_64 45/155
Updating : procps-3.2.8-45.el6_9.3.x86_64 46/155
Updating : initscripts-9.03.61-1.el6.centos.x86_64 47/155
Updating : openssh-5.3p1-123.el6_9.x86_64 48/155
Updating : dracut-004-411.el6.noarch 49/155
Updating : dracut-kernel-004-411.el6.noarch 50/155
Installing : kernel-2.6.32-754.2.1.el6.x86_64 51/155
Updating : ntpdate-4.2.6p5-12.el6.centos.2.x86_64 52/155
Updating : device-mapper-persistent-data-0.6.2-0.2.rc7.el6.x86_64 53/155
Updating : libgomp-4.4.7-23.el6.x86_64 54/155
Updating : gcc-4.4.7-23.el6.x86_64 55/155
Updating : gcc-c++-4.4.7-23.el6.x86_64 56/155
Updating : lvm2-2.02.143-12.el6_9.1.x86_64 57/155
Updating : ntp-4.2.6p5-12.el6.centos.2.x86_64 58/155
Updating : 2:irqbalance-1.0.7-9.el6.x86_64 59/155
Updating : openssh-server-5.3p1-123.el6_9.x86_64 60/155
Updating : openssh-clients-5.3p1-123.el6_9.x86_64 61/155
Updating : device-mapper-multipath-0.4.9-106.el6.x86_64 62/155
Updating : 12:dhclient-4.1.1-61.P1.el6.centos.x86_64 63/155
Updating : rsyslog-5.8.10-12.el6.x86_64 64/155
Updating : e2fsprogs-1.41.12-24.el6.x86_64 65/155
Updating : rpm-python-4.8.0-59.el6.x86_64 66/155
Updating : nss-tools-3.36.0-8.el6.x86_64 67/155
Updating : selinux-policy-targeted-3.7.19-312.el6.noarch 68/155
Updating : 1:nfs-utils-1.2.3-78.el6.x86_64 69/155
Updating : iptables-ipv6-1.4.7-19.el6.x86_64 70/155
Updating : ca-certificates-2018.2.22-65.1.el6.noarch 71/155
Updating : nscd-2.12-1.212.el6.x86_64 72/155
Updating : sysstat-9.0.4-33.el6_9.1.x86_64 73/155
Updating : patch-2.6-8.el6_9.x86_64 74/155
Updating : gnupg2-2.0.14-9.el6_10.x86_64 75/155
Updating : hwdata-0.233-20.1.el6.noarch 76/155
Updating : yum-plugin-fastestmirror-1.1.30-41.el6.noarch 77/155
Updating : python-setuptools-0.6.10-4.el6_9.noarch 78/155
Cleanup : device-mapper-multipath-0.4.9-100.el6.x86_64 79/155
Cleanup : 1:nfs-utils-1.2.3-75.el6.x86_64 80/155
Cleanup : openssh-clients-5.3p1-122.el6.x86_64 81/155
Cleanup : e2fsprogs-1.41.12-23.el6.x86_64 82/155
Cleanup : openssh-server-5.3p1-122.el6.x86_64 83/155
Cleanup : openssh-5.3p1-122.el6.x86_64 84/155
Cleanup : nss-tools-3.28.4-3.el6_9.x86_64 85/155
Cleanup : gcc-c++-4.4.7-18.el6.x86_64 86/155
Cleanup : gcc-4.4.7-18.el6.x86_64 87/155
Cleanup : rpm-python-4.8.0-55.el6.x86_64 88/155
Cleanup : rpm-libs-4.8.0-55.el6.x86_64 89/155
Cleanup : rpm-4.8.0-55.el6.x86_64 90/155
Cleanup : nss-sysinit-3.28.4-3.el6_9.x86_64 91/155
Cleanup : nss-3.28.4-3.el6_9.x86_64 92/155
Cleanup : lvm2-2.02.143-12.el6.x86_64 93/155
Cleanup : lvm2-libs-2.02.143-12.el6.x86_64 94/155
Cleanup : device-mapper-event-1.02.117-12.el6.x86_64 95/155
Cleanup : iptables-ipv6-1.4.7-16.el6.x86_64 96/155
Cleanup : glibc-devel-2.12-1.209.el6_9.2.x86_64 97/155
Cleanup : glibc-headers-2.12-1.209.el6_9.2.x86_64 98/155
Cleanup : selinux-policy-targeted-3.7.19-307.el6_9.2.noarch 99/155
Cleanup : selinux-policy-3.7.19-307.el6_9.2.noarch 100/155
Cleanup : libstdc++-devel-4.4.7-18.el6.x86_64 101/155
Cleanup : dracut-kernel-004-409.el6_8.2.noarch 102/155
Cleanup : dracut-004-409.el6_8.2.noarch 103/155
Cleanup : ca-certificates-2017.2.14-65.0.1.el6_9.noarch 104/155
Cleanup : kernel-headers-2.6.32-696.10.1.el6.x86_64 105/155
Cleanup : hwdata-0.233-18.1.el6.noarch 106/155
Cleanup : yum-plugin-fastestmirror-1.1.30-40.el6.noarch 107/155
Cleanup : kernel-firmware-2.6.32-696.10.1.el6.noarch 108/155
Cleanup : python-setuptools-0.6.10-3.el6.noarch 109/155
Cleanup : nss-util-3.28.4-1.el6_9.x86_64 110/155
Cleanup : rpcbind-0.2.0-13.el6_9.1.x86_64 111/155
Cleanup : device-mapper-multipath-libs-0.4.9-100.el6.x86_64 112/155
Cleanup : rsyslog-5.8.10-10.el6_6.x86_64 113/155
Cleanup : 2:irqbalance-1.0.7-8.el6.x86_64 114/155
Cleanup : ntp-4.2.6p5-10.el6.centos.2.x86_64 115/155
Cleanup : 12:dhclient-4.1.1-53.P1.el6.centos.1.x86_64 116/155
Cleanup : device-mapper-event-libs-1.02.117-12.el6.x86_64 117/155
Cleanup : device-mapper-persistent-data-0.6.2-0.1.rc7.el6.x86_64 118/155
Cleanup : cpp-4.4.7-18.el6.x86_64 119/155
Cleanup : e2fsprogs-libs-1.41.12-23.el6.x86_64 120/155
Cleanup : libss-1.41.12-23.el6.x86_64 121/155
Cleanup : kpartx-0.4.9-100.el6.x86_64 122/155
Cleanup : device-mapper-1.02.117-12.el6.x86_64 123/155
Cleanup : device-mapper-libs-1.02.117-12.el6.x86_64 124/155
Cleanup : sysstat-9.0.4-33.el6.x86_64 125/155
Cleanup : ntpdate-4.2.6p5-10.el6.centos.2.x86_64 126/155
Cleanup : initscripts-9.03.58-1.el6.centos.1.x86_64 127/155
Cleanup : util-linux-ng-2.17.2-12.28.el6.x86_64 128/155
Cleanup : upstart-0.6.5-16.el6.x86_64 129/155
Cleanup : libnih-1.0.1-7.el6.x86_64 130/155
Cleanup : iproute-2.6.32-54.el6.x86_64 131/155
Cleanup : libblkid-2.17.2-12.28.el6.x86_64 132/155
Cleanup : nscd-2.12-1.209.el6_9.2.x86_64 133/155
Cleanup : coreutils-libs-8.4-46.el6.x86_64 134/155
Cleanup : coreutils-8.4-46.el6.x86_64 135/155
Cleanup : gmp-4.3.1-12.el6.x86_64 136/155
Cleanup : libstdc++-4.4.7-18.el6.x86_64 137/155
Cleanup : libuuid-2.17.2-12.28.el6.x86_64 138/155
Cleanup : iptables-1.4.7-16.el6.x86_64 139/155
Cleanup : 1:dbus-libs-1.2.24-8.el6_6.x86_64 140/155
Cleanup : procps-3.2.8-45.el6_9.1.x86_64 141/155
Cleanup : glib2-2.28.8-9.el6.x86_64 142/155
Cleanup : libcom_err-1.41.12-23.el6.x86_64 143/155
Cleanup : libtirpc-0.2.1-13.el6_9.x86_64 144/155
Cleanup : nspr-4.13.1-1.el6.x86_64 145/155
Cleanup : binutils-2.20.51.0.2-5.47.el6_9.1.x86_64 146/155
Cleanup : libgomp-4.4.7-18.el6.x86_64 147/155
Cleanup : gnupg2-2.0.14-8.el6.x86_64 148/155
Cleanup : patch-2.6-6.el6.x86_64 149/155
Cleanup : centos-release-6-9.el6.12.3.x86_64 150/155
Cleanup : 12:dhcp-common-4.1.1-53.P1.el6.centos.1.x86_64 151/155
Cleanup : glibc-common-2.12-1.209.el6_9.2.x86_64 152/155
Cleanup : glibc-2.12-1.209.el6_9.2.x86_64 153/155
Cleanup : tzdata-2017b-1.el6.noarch 154/155
Cleanup : libgcc-4.4.7-18.el6.x86_64 155/155
Verifying : iptables-ipv6-1.4.7-19.el6.x86_64 1/155
Verifying : gcc-4.4.7-23.el6.x86_64 2/155
Verifying : glibc-headers-2.12-1.212.el6.x86_64 3/155
Verifying : rpm-4.8.0-59.el6.x86_64 4/155
Verifying : 1:nfs-utils-1.2.3-78.el6.x86_64 5/155
Verifying : kpartx-0.4.9-106.el6.x86_64 6/155
Verifying : tzdata-2018e-3.el6.noarch 7/155
Verifying : glib2-2.28.8-10.el6.x86_64 8/155
Verifying : lvm2-2.02.143-12.el6_9.1.x86_64 9/155
Verifying : 12:dhcp-common-4.1.1-61.P1.el6.centos.x86_64 10/155
Verifying : python-setuptools-0.6.10-4.el6_9.noarch 11/155
Verifying : nss-util-3.36.0-1.el6.x86_64 12/155
Verifying : ca-certificates-2018.2.22-65.1.el6.noarch 13/155
Verifying : nspr-4.19.0-1.el6.x86_64 14/155
Verifying : device-mapper-multipath-libs-0.4.9-106.el6.x86_64 15/155
Verifying : libcom_err-1.41.12-24.el6.x86_64 16/155
Verifying : nscd-2.12-1.212.el6.x86_64 17/155
Verifying : initscripts-9.03.61-1.el6.centos.x86_64 18/155
Verifying : cpp-4.4.7-23.el6.x86_64 19/155
Verifying : device-mapper-1.02.117-12.el6_9.1.x86_64 20/155
Verifying : selinux-policy-3.7.19-312.el6.noarch 21/155
Verifying : kernel-firmware-2.6.32-754.2.1.el6.noarch 22/155
Verifying : device-mapper-multipath-0.4.9-106.el6.x86_64 23/155
Verifying : rpm-python-4.8.0-59.el6.x86_64 24/155
Verifying : libblkid-2.17.2-12.28.el6_9.2.x86_64 25/155
Verifying : glibc-devel-2.12-1.212.el6.x86_64 26/155
Verifying : glibc-common-2.12-1.212.el6.x86_64 27/155
Verifying : 12:dhclient-4.1.1-61.P1.el6.centos.x86_64 28/155
Verifying : coreutils-8.4-47.el6.x86_64 29/155
Verifying : e2fsprogs-libs-1.41.12-24.el6.x86_64 30/155
Verifying : nss-tools-3.36.0-8.el6.x86_64 31/155
Verifying : glibc-2.12-1.212.el6.x86_64 32/155
Verifying : upstart-0.6.5-17.el6.x86_64 33/155
Verifying : device-mapper-libs-1.02.117-12.el6_9.1.x86_64 34/155
Verifying : openssh-server-5.3p1-123.el6_9.x86_64 35/155
Verifying : rpm-libs-4.8.0-59.el6.x86_64 36/155
Verifying : libnih-1.0.1-8.el6.x86_64 37/155
Verifying : libss-1.41.12-24.el6.x86_64 38/155
Verifying : binutils-2.20.51.0.2-5.48.el6.x86_64 39/155
Verifying : libtirpc-0.2.1-15.el6.x86_64 40/155
Verifying : iproute-2.6.32-57.el6.x86_64 41/155
Verifying : device-mapper-event-libs-1.02.117-12.el6_9.1.x86_64 42/155
Verifying : dracut-004-411.el6.noarch 43/155
Verifying : gcc-c++-4.4.7-23.el6.x86_64 44/155
Verifying : libuuid-2.17.2-12.28.el6_9.2.x86_64 45/155
Verifying : selinux-policy-targeted-3.7.19-312.el6.noarch 46/155
Verifying : device-mapper-event-1.02.117-12.el6_9.1.x86_64 47/155
Verifying : procps-3.2.8-45.el6_9.3.x86_64 48/155
Verifying : ntpdate-4.2.6p5-12.el6.centos.2.x86_64 49/155
Verifying : kernel-headers-2.6.32-754.2.1.el6.x86_64 50/155
Verifying : iptables-1.4.7-19.el6.x86_64 51/155
Verifying : libstdc++-4.4.7-23.el6.x86_64 52/155
Verifying : lvm2-libs-2.02.143-12.el6_9.1.x86_64 53/155
Verifying : yum-plugin-fastestmirror-1.1.30-41.el6.noarch 54/155
Verifying : ntp-4.2.6p5-12.el6.centos.2.x86_64 55/155
Verifying : e2fsprogs-1.41.12-24.el6.x86_64 56/155
Verifying : openssh-clients-5.3p1-123.el6_9.x86_64 57/155
Verifying : device-mapper-persistent-data-0.6.2-0.2.rc7.el6.x86_64 58/155
Verifying : kernel-2.6.32-754.2.1.el6.x86_64 59/155
Verifying : libstdc++-devel-4.4.7-23.el6.x86_64 60/155
Verifying : rpcbind-0.2.0-16.el6.x86_64 61/155
Verifying : hwdata-0.233-20.1.el6.noarch 62/155
Verifying : rsyslog-5.8.10-12.el6.x86_64 63/155
Verifying : patch-2.6-8.el6_9.x86_64 64/155
Verifying : libgomp-4.4.7-23.el6.x86_64 65/155
Verifying : nss-sysinit-3.36.0-8.el6.x86_64 66/155
Verifying : nss-3.36.0-8.el6.x86_64 67/155
Verifying : coreutils-libs-8.4-47.el6.x86_64 68/155
Verifying : openssh-5.3p1-123.el6_9.x86_64 69/155
Verifying : 2:irqbalance-1.0.7-9.el6.x86_64 70/155
Verifying : gnupg2-2.0.14-9.el6_10.x86_64 71/155
Verifying : dracut-kernel-004-411.el6.noarch 72/155
Verifying : centos-release-6-10.el6.centos.12.3.x86_64 73/155
Verifying : sysstat-9.0.4-33.el6_9.1.x86_64 74/155
Verifying : util-linux-ng-2.17.2-12.28.el6_9.2.x86_64 75/155
Verifying : 1:dbus-libs-1.2.24-9.el6.x86_64 76/155
Verifying : libgcc-4.4.7-23.el6.x86_64 77/155
Verifying : gmp-4.3.1-13.el6.x86_64 78/155
Verifying : device-mapper-libs-1.02.117-12.el6.x86_64 79/155
Verifying : device-mapper-multipath-libs-0.4.9-100.el6.x86_64 80/155
Verifying : nss-util-3.28.4-1.el6_9.x86_64 81/155
Verifying : 12:dhclient-4.1.1-53.P1.el6.centos.1.x86_64 82/155
Verifying : glib2-2.28.8-9.el6.x86_64 83/155
Verifying : dracut-kernel-004-409.el6_8.2.noarch 84/155
Verifying : kernel-headers-2.6.32-696.10.1.el6.x86_64 85/155
Verifying : nscd-2.12-1.209.el6_9.2.x86_64 86/155
Verifying : yum-plugin-fastestmirror-1.1.30-40.el6.noarch 87/155
Verifying : 1:nfs-utils-1.2.3-75.el6.x86_64 88/155
Verifying : libnih-1.0.1-7.el6.x86_64 89/155
Verifying : device-mapper-1.02.117-12.el6.x86_64 90/155
Verifying : glibc-common-2.12-1.209.el6_9.2.x86_64 91/155
Verifying : selinux-policy-targeted-3.7.19-307.el6_9.2.noarch 92/155
Verifying : device-mapper-event-libs-1.02.117-12.el6.x86_64 93/155
Verifying : libss-1.41.12-23.el6.x86_64 94/155
Verifying : libblkid-2.17.2-12.28.el6.x86_64 95/155
Verifying : iptables-1.4.7-16.el6.x86_64 96/155
Verifying : nss-tools-3.28.4-3.el6_9.x86_64 97/155
Verifying : rpcbind-0.2.0-13.el6_9.1.x86_64 98/155
Verifying : glibc-headers-2.12-1.209.el6_9.2.x86_64 99/155
Verifying : libstdc++-devel-4.4.7-18.el6.x86_64 100/155
Verifying : selinux-policy-3.7.19-307.el6_9.2.noarch 101/155
Verifying : sysstat-9.0.4-33.el6.x86_64 102/155
Verifying : tzdata-2017b-1.el6.noarch 103/155
Verifying : rsyslog-5.8.10-10.el6_6.x86_64 104/155
Verifying : rpm-4.8.0-55.el6.x86_64 105/155
Verifying : coreutils-8.4-46.el6.x86_64 106/155
Verifying : iproute-2.6.32-54.el6.x86_64 107/155
Verifying : glibc-devel-2.12-1.209.el6_9.2.x86_64 108/155
Verifying : libuuid-2.17.2-12.28.el6.x86_64 109/155
Verifying : procps-3.2.8-45.el6_9.1.x86_64 110/155
Verifying : cpp-4.4.7-18.el6.x86_64 111/155
Verifying : ntpdate-4.2.6p5-10.el6.centos.2.x86_64 112/155
Verifying : gmp-4.3.1-12.el6.x86_64 113/155
Verifying : python-setuptools-0.6.10-3.el6.noarch 114/155
Verifying : gnupg2-2.0.14-8.el6.x86_64 115/155
Verifying : libgomp-4.4.7-18.el6.x86_64 116/155
Verifying : ntp-4.2.6p5-10.el6.centos.2.x86_64 117/155
Verifying : dracut-004-409.el6_8.2.noarch 118/155
Verifying : rpm-libs-4.8.0-55.el6.x86_64 119/155
Verifying : binutils-2.20.51.0.2-5.47.el6_9.1.x86_64 120/155
Verifying : upstart-0.6.5-16.el6.x86_64 121/155
Verifying : initscripts-9.03.58-1.el6.centos.1.x86_64 122/155
Verifying : libcom_err-1.41.12-23.el6.x86_64 123/155
Verifying : openssh-5.3p1-122.el6.x86_64 124/155
Verifying : gcc-c++-4.4.7-18.el6.x86_64 125/155
Verifying : openssh-server-5.3p1-122.el6.x86_64 126/155
Verifying : device-mapper-event-1.02.117-12.el6.x86_64 127/155
Verifying : gcc-4.4.7-18.el6.x86_64 128/155
Verifying : libstdc++-4.4.7-18.el6.x86_64 129/155
Verifying : util-linux-ng-2.17.2-12.28.el6.x86_64 130/155
Verifying : 1:dbus-libs-1.2.24-8.el6_6.x86_64 131/155
Verifying : 2:irqbalance-1.0.7-8.el6.x86_64 132/155
Verifying : glibc-2.12-1.209.el6_9.2.x86_64 133/155
Verifying : openssh-clients-5.3p1-122.el6.x86_64 134/155
Verifying : coreutils-libs-8.4-46.el6.x86_64 135/155
Verifying : patch-2.6-6.el6.x86_64 136/155
Verifying : hwdata-0.233-18.1.el6.noarch 137/155
Verifying : device-mapper-multipath-0.4.9-100.el6.x86_64 138/155
Verifying : lvm2-2.02.143-12.el6.x86_64 139/155
Verifying : e2fsprogs-libs-1.41.12-23.el6.x86_64 140/155
Verifying : lvm2-libs-2.02.143-12.el6.x86_64 141/155
Verifying : rpm-python-4.8.0-55.el6.x86_64 142/155
Verifying : e2fsprogs-1.41.12-23.el6.x86_64 143/155
Verifying : nspr-4.13.1-1.el6.x86_64 144/155
Verifying : 12:dhcp-common-4.1.1-53.P1.el6.centos.1.x86_64 145/155
Verifying : nss-sysinit-3.28.4-3.el6_9.x86_64 146/155
Verifying : kpartx-0.4.9-100.el6.x86_64 147/155
Verifying : kernel-firmware-2.6.32-696.10.1.el6.noarch 148/155
Verifying : centos-release-6-9.el6.12.3.x86_64 149/155
Verifying : libgcc-4.4.7-18.el6.x86_64 150/155
Verifying : device-mapper-persistent-data-0.6.2-0.1.rc7.el6.x86_64 151/155
Verifying : ca-certificates-2017.2.14-65.0.1.el6_9.noarch 152/155
Verifying : libtirpc-0.2.1-13.el6_9.x86_64 153/155
Verifying : nss-3.28.4-3.el6_9.x86_64 154/155
Verifying : iptables-ipv6-1.4.7-16.el6.x86_64 155/155
Installed:
kernel.x86_64 0:2.6.32-754.2.1.el6
Updated:
binutils.x86_64 0:2.20.51.0.2-5.48.el6 ca-certificates.noarch 0:2018.2.22-65.1.el6
centos-release.x86_64 0:6-10.el6.centos.12.3 coreutils.x86_64 0:8.4-47.el6
coreutils-libs.x86_64 0:8.4-47.el6 cpp.x86_64 0:4.4.7-23.el6
dbus-libs.x86_64 1:1.2.24-9.el6 device-mapper.x86_64 0:1.02.117-12.el6_9.1
device-mapper-event.x86_64 0:1.02.117-12.el6_9.1 device-mapper-event-libs.x86_64 0:1.02.117-12.el6_9.1
device-mapper-libs.x86_64 0:1.02.117-12.el6_9.1 device-mapper-multipath.x86_64 0:0.4.9-106.el6
device-mapper-multipath-libs.x86_64 0:0.4.9-106.el6 device-mapper-persistent-data.x86_64 0:0.6.2-0.2.rc7.el6
dhclient.x86_64 12:4.1.1-61.P1.el6.centos dhcp-common.x86_64 12:4.1.1-61.P1.el6.centos
dracut.noarch 0:004-411.el6 dracut-kernel.noarch 0:004-411.el6
e2fsprogs.x86_64 0:1.41.12-24.el6 e2fsprogs-libs.x86_64 0:1.41.12-24.el6
gcc.x86_64 0:4.4.7-23.el6 gcc-c++.x86_64 0:4.4.7-23.el6
glib2.x86_64 0:2.28.8-10.el6 glibc.x86_64 0:2.12-1.212.el6
glibc-common.x86_64 0:2.12-1.212.el6 glibc-devel.x86_64 0:2.12-1.212.el6
glibc-headers.x86_64 0:2.12-1.212.el6 gmp.x86_64 0:4.3.1-13.el6
gnupg2.x86_64 0:2.0.14-9.el6_10 hwdata.noarch 0:0.233-20.1.el6
initscripts.x86_64 0:9.03.61-1.el6.centos iproute.x86_64 0:2.6.32-57.el6
iptables.x86_64 0:1.4.7-19.el6 iptables-ipv6.x86_64 0:1.4.7-19.el6
irqbalance.x86_64 2:1.0.7-9.el6 kernel-firmware.noarch 0:2.6.32-754.2.1.el6
kernel-headers.x86_64 0:2.6.32-754.2.1.el6 kpartx.x86_64 0:0.4.9-106.el6
libblkid.x86_64 0:2.17.2-12.28.el6_9.2 libcom_err.x86_64 0:1.41.12-24.el6
libgcc.x86_64 0:4.4.7-23.el6 libgomp.x86_64 0:4.4.7-23.el6
libnih.x86_64 0:1.0.1-8.el6 libss.x86_64 0:1.41.12-24.el6
libstdc++.x86_64 0:4.4.7-23.el6 libstdc++-devel.x86_64 0:4.4.7-23.el6
libtirpc.x86_64 0:0.2.1-15.el6 libuuid.x86_64 0:2.17.2-12.28.el6_9.2
lvm2.x86_64 0:2.02.143-12.el6_9.1 lvm2-libs.x86_64 0:2.02.143-12.el6_9.1
nfs-utils.x86_64 1:1.2.3-78.el6 nscd.x86_64 0:2.12-1.212.el6
nspr.x86_64 0:4.19.0-1.el6 nss.x86_64 0:3.36.0-8.el6
nss-sysinit.x86_64 0:3.36.0-8.el6 nss-tools.x86_64 0:3.36.0-8.el6
nss-util.x86_64 0:3.36.0-1.el6 ntp.x86_64 0:4.2.6p5-12.el6.centos.2
ntpdate.x86_64 0:4.2.6p5-12.el6.centos.2 openssh.x86_64 0:5.3p1-123.el6_9
openssh-clients.x86_64 0:5.3p1-123.el6_9 openssh-server.x86_64 0:5.3p1-123.el6_9
patch.x86_64 0:2.6-8.el6_9 procps.x86_64 0:3.2.8-45.el6_9.3
python-setuptools.noarch 0:0.6.10-4.el6_9 rpcbind.x86_64 0:0.2.0-16.el6
rpm.x86_64 0:4.8.0-59.el6 rpm-libs.x86_64 0:4.8.0-59.el6
rpm-python.x86_64 0:4.8.0-59.el6 rsyslog.x86_64 0:5.8.10-12.el6
selinux-policy.noarch 0:3.7.19-312.el6 selinux-policy-targeted.noarch 0:3.7.19-312.el6
sysstat.x86_64 0:9.0.4-33.el6_9.1 tzdata.noarch 0:2018e-3.el6
upstart.x86_64 0:0.6.5-17.el6 util-linux-ng.x86_64 0:2.17.2-12.28.el6_9.2
yum-plugin-fastestmirror.noarch 0:1.1.30-41.el6
Complete!
更新完后,再次安装就可以了。
[jumpserver@SX-newTest-Tomcat ~]$ sudo yum install -y clamav
Loaded plugins: fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
Resolving Dependencies
--> Running transaction check
---> Package clamav.x86_64 0:0.100.1-1.el6 will be installed
--> Processing Dependency: clamav-db = 0.100.1-1.el6 for package: clamav-0.100.1-1.el6.x86_64
--> Processing Dependency: libjson-c.so.2()(64bit) for package: clamav-0.100.1-1.el6.x86_64
--> Running transaction check
---> Package clamav-db.x86_64 0:0.100.1-1.el6 will be installed
---> Package json-c.x86_64 0:0.11-13.el6 will be installed
--> Finished Dependency Resolution
Dependencies Resolved
=============================================================================================================================================================
Package Arch Version Repository Size
=============================================================================================================================================================
Installing:
clamav x86_64 0.100.1-1.el6 epel 1.2 M
Installing for dependencies:
clamav-db x86_64 0.100.1-1.el6 epel 159 M
json-c x86_64 0.11-13.el6 base 27 k
Transaction Summary
=============================================================================================================================================================
Install 3 Package(s)
Total download size: 160 M
Installed size: 162 M
Downloading Packages:
(1/3): clamav-0.100.1-1.el6.x86_64.rpm | 1.2 MB 00:00
(2/3): clamav-db-0.100.1-1.el6.x86_64.rpm | 159 MB 00:03
(3/3): json-c-0.11-13.el6.x86_64.rpm | 27 kB 00:00
-------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 48 MB/s | 160 MB 00:03
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : json-c-0.11-13.el6.x86_64 1/3
Installing : clamav-db-0.100.1-1.el6.x86_64 2/3
Installing : clamav-0.100.1-1.el6.x86_64 3/3
Verifying : clamav-db-0.100.1-1.el6.x86_64 1/3
Verifying : json-c-0.11-13.el6.x86_64 2/3
Verifying : clamav-0.100.1-1.el6.x86_64 3/3
Installed:
clamav.x86_64 0:0.100.1-1.el6
Dependency Installed:
clamav-db.x86_64 0:0.100.1-1.el6 json-c.x86_64 0:0.11-13.el6
Complete!
[jumpserver@SX-newTest-Tomcat ~]$ rpm -qa clamav
clamav-0.100.1-1.el6.x86_64
关于运行nutch报错:unzipBestEffort returned null和unmatched报错的问题我们已经讲解完毕,感谢您的阅读,如果还想了解更多关于.. ld: symbol(s) not found for architecture x86_64 collect2: ld returned 1 exit status make[2]: ***、.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2、@Cacheable Null key returned for cache 异常的解决方法、centos6 系统 yum 安装报错 The requested URL returned error: 404 Not Found等相关内容,可以在本站寻找。
本文标签: