`
fantaxy025025
  • 浏览: 1359305 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类

ruby错误解决: Address family not supported by protocol - connect(2)

 
阅读更多

ruby的socket错误:

Errno::EAFNOSUPPORT: Address family not supported by protocol - connect(2)

 

原因解析:地址集不被支持

解决方法:改成ip或者修改/etc/hosts文件

 

 

require 'socket'

include Socket::Constants

puts "*"*50

puts AF_INET

puts SOCK_STREAM

puts "*"*50

socket = Socket.new(AF_INET, SOCK_STREAM, 0)

sockaddr = Socket.pack_sockaddr_in(2202, 'localhost')         <<-- 改成127.0.0.1

 

socket.connect(sockaddr)

socket.puts "Hello from script 2."

puts "The server said, '#{socket.readline.chomp}'"

socket.close

 

 

Y

Y

Y

*

Y

Y

Y


 

 

分享到:
评论
1 楼 flingfox63 2012-12-12  
谢谢分享,电脑上有IPV6,导致了Guard启动不了……

相关推荐

    Protocol not supported(解决方案).md

    Protocol not supported(解决方案).md

    解决SVN上传提示Empty directoriesis not supported

    解决SVN上传提示Empty directoriesis not supported 解决SVN上传提示Empty directoriesis not supported

    ThinkPHP6.1 Filesystem Driver aliyun not supported

    ThinkPHP6.1 Filesystem Driver aliyun not supported

    Operation Not Supported(解决方案).md

    在软件开发过程中,遇到“Operation Not Supported”错误意味着试图执行一个不被当前环境、库、框架或设备支持的操作。这种错误常见于编程中,尤其是当开发者尝试使用某个库或框架的某个特定功能,但该功能因为版本...

    stl-views.gdb

    # The following STL containers are currently supported: # # std::vector&lt;T&gt; -- via pvector command # std::list&lt;T&gt; -- via plist or plist_member command # std::map,T&gt; -- via pmap or pmap_member command #...

    oracle错误代码大全

    ### Oracle 错误代码解析 #### ORA-00001: Unique constraint violated - **解释**: 当尝试插入或更新的数据违反了唯一性约束时触发此错误。 - **解决方案**: 检查数据是否重复,并确保每个字段值都是唯一的。 ##...

    GCC编译错误类型

    1. **“Conversion from %s to %s not supported by iconv”** 这个错误提示表明iconv库不支持从一种字符编码转换到另一种字符编码的操作。iconv是用于字符集转换的库,此错误通常发生在试图转换不兼容的字符集时...

    亿图制作工具

    绿色软件,专门用于画流程图

    Python库 | brambox-4.0.0-cp310-cp310-musllinux_1_1_aarch64.whl

    资源分类:Python库 所属语言:Python 使用前提:需要解压 资源全名:brambox-4.0.0-cp310-cp310-musllinux_1_1_aarch64.whl 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059

    ip monitor

    Jun 08 00:02:46 localhost.localdomain firewalld[854]: WARNING: ICMP type 'beyond-scope' is not supported by the kernel for ipv6. Jun 08 00:02:46 localhost.localdomain firewalld[854]: WARNING: beyond-...

    oracle 错误一览表

    #### ORA-00055: DML on a dictionary managed table/view is not supported - **描述**:不支持对字典管理的表/视图进行DML操作。 - **解决方法**:使用本地管理的表空间或禁用字典管理。 #### ORA-00056: '.' not...

    socket错误代码对应表

    - **Socket error #10047 - Address family not supported by protocol family**:协议族不支持的地址族。 - **Socket error #10048 - Address already in use**:地址已被占用。 - **Socket error #10049 - Cannot ...

    unity3d的New UI Widgets1.10.2

    Virtualization (recycling) supported: gameobjects are created for the visible items only. Containers: - Accordion - Tabs Dialog: - DatePicker - DateTimePicker - Dialog - FileDialog * - FolderDialog ...

    Oracle 报错ORA-00845 MEMORY_TARGET not supported on this system

    Oracle数据库在运行过程中,经常会遇到各种错误代码,错误代码ORA-00845是其中的一个,它是指“MEMORY_TARGET not supported on this system”。这个错误一般发生在尝试在不支持MEMORY_TARGET参数的系统上设置该参数...

    PXE启动代码错误表

    PXE-E07: PCI BIOS calls not supported -------------------------------------- 该错误代码表示 PCI BIOS 不支持。解决方法是检查 PCI BIOS 的配置是否正确,并确保 PCI BIOS 能够正确地提供服务。 PXE-E08: ...

    Python库 | bamboolib-1.5.1-cp37-cp37m-manylinux1_i686.whl

    资源分类:Python库 所属语言:Python 资源全名:bamboolib-1.5.1-cp37-cp37m-manylinux1_i686.whl 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059

    Python库 | torch-1.9.0-cp37-cp37m-manylinux2014_aarch64.whl

    python库。资源全名:torch-1.9.0-cp37-cp37m-manylinux2014_aarch64.whl

    PyPI 官网下载 | bcrypt-3.1.0-cp26-cp26mu-manylinux1_i686.whl

    资源来自pypi官网。 资源全名:bcrypt-3.1.0-cp26-cp26mu-manylinux1_i686.whl

    java解决405 - HTTP method GET is not supported by this URL

    当您遇到"405 - HTTP method GET is not supported by this URL"这样的问题时,通常意味着您的服务器端代码没有正确处理GET请求,或者请求被误定向到了一个不期望GET方法的Servlet。 首先,我们需要理解HTTP协议中...

    pymssql-2.1.1.win-amd64-py2.7.exe

    pymssql-2.1.1.win-amd64-py2.7.exe

Global site tag (gtag.js) - Google Analytics