如何在 CentOS 6.7 上配置和安装 ZeroMQ (libsodium)

一则或许对你有用的小广告

欢迎加入小哈的星球 ,你将获得:专属的项目实战 / 1v1 提问 / Java 学习路线 / 学习打卡 / 每月赠书 / 社群讨论

  • 新项目:《从零手撸:仿小红书(微服务架构)》 正在持续爆肝中,基于 Spring Cloud Alibaba + Spring Boot 3.x + JDK 17...点击查看项目介绍 ;
  • 《从零手撸:前后端分离博客项目(全栈开发)》 2 期已完结,演示链接: http://116.62.199.48/ ;

截止目前, 星球 内专栏累计输出 63w+ 字,讲解图 2808+ 张,还在持续爆肝中.. 后续还会上新更多项目,目标是将 Java 领域典型的项目都整一波,如秒杀系统, 在线商城, IM 即时通讯,权限管理,Spring Cloud Alibaba 微服务等等,已有 2200+ 小伙伴加入学习 ,欢迎点击围观

开始使用 ZeroMQ(版本 4.2.0 或更高版本)可能非常具有挑战性,尤其是在具备所有先决条件的情况下。我花了整整两天的时间来解决这个过程。所以我分享这个是为了让其他人可以避免同样的陷阱,并且可以在设置他们的环境方面有一个良好的开端。

陷阱#1

为您的平台开发。我习惯于在 Ubuntu 14.04.3 LTE 中开发,但在这种情况下我的部署环境恰好是 CentOS 6.7(最小服务器)。由于 GLIBC 版本等依赖项不同,因此最好坚持使用目标平台进行设置。

本练习假定您已安装 CentOS 6.7(最小服务器选项)。

陷阱#2

在您的研究中,您可能遇到过以下错误。我将它们包括在内,希望搜索引擎机器人能将您带到这个博客,这样您就可以省去一些麻烦。


 checking whether the C compiler works… configure: error: in `/root/downloads/libzmq-master’:
configure: error: cannot run C compiled programs.
If you meant to cross compile, use `–host’.



 checking whether the C compiler works… configure: error: in `/root/downloads/libzmq-master’:
configure: error: cannot run C compiled programs.
If you meant to cross compile, use `–host’.



 checking whether the C compiler works… configure: error: in `/root/downloads/libzmq-master’:
configure: error: cannot run C compiled programs.
If you meant to cross compile, use `–host’.



 checking whether the C compiler works… configure: error: in `/root/downloads/libzmq-master’:
configure: error: cannot run C compiled programs.
If you meant to cross compile, use `–host’.

解决方案:

以下步骤为您提供了分步说明,让您可以编译标准的 ZeroMQ HelloWorld 服务器和 HelloWorld 客户端。


 checking whether the C compiler works… configure: error: in `/root/downloads/libzmq-master’:
configure: error: cannot run C compiled programs.
If you meant to cross compile, use `–host’.


谢谢你,干杯!

相关文章