问题描述:
今天本人运行某软件,无法运行。显示错误:
Enter Management Password:
Tue Feb 11 19:33:29 2020 MANAGEMENT: Socket bind failed on local address [AF_INET][nameinfo() err: ]: Unknown error (errno=10106)
Tue Feb 11 19:33:29 2020 Exiting due to fatal error
软件开发商建议:
To resolve this issue, make sure that you have administrator privileges for your Windows account. To ensure this, right-click the executable and select “Run as Administrator”. If this does not seem to fix the issue, right-click the executable and select the “Properties” menu option. In the properties window, select the Compatibility tab and check the box that says “Run this program as an administrator”.
结果:仍然无法运行。
解决方案:
自行搜索“errno=10106”后,此表示端口被占用。
WINDOWS+X 调出cmd命令运行,输入运行:netsh winsock reset
问题最终解决。
参考资料:
netsh winsock reset 作用是重置 Winsock 目录。如果一台机器上的Winsock协议配置有问题的话将会导致网络连接等问题,就需要用netsh winsock reset命令来重置Winsock目录借以恢复网络。这个命令可以重新初始化网络环境,以解决由于软件冲突、病毒原因造成的参数错误问题。 netsh是一个能够通过命令行操作几乎所有网络相关设置的接口,比如设置IP,DNS,网卡,无线网络等,Winsock是系统内部目录,Winsock是Windows网络编程接口,winsock工作在应用层,它提供与底层传输协议无关的高层数据传输编程接口,reset是对Winsock的重置操作。当执行完winsock的命令重启计算机后,需要重新配置IP。
今天本人运行某软件,无法运行。显示错误:
Enter Management Password:
Tue Feb 11 19:33:29 2020 MANAGEMENT: Socket bind failed on local address [AF_INET][nameinfo() err: ]: Unknown error (errno=10106)
Tue Feb 11 19:33:29 2020 Exiting due to fatal error
软件开发商建议:
To resolve this issue, make sure that you have administrator privileges for your Windows account. To ensure this, right-click the executable and select “Run as Administrator”. If this does not seem to fix the issue, right-click the executable and select the “Properties” menu option. In the properties window, select the Compatibility tab and check the box that says “Run this program as an administrator”.
结果:仍然无法运行。
解决方案:
自行搜索“errno=10106”后,此表示端口被占用。
WINDOWS+X 调出cmd命令运行,输入运行:netsh winsock reset
问题最终解决。
参考资料:
netsh winsock reset 作用是重置 Winsock 目录。如果一台机器上的Winsock协议配置有问题的话将会导致网络连接等问题,就需要用netsh winsock reset命令来重置Winsock目录借以恢复网络。这个命令可以重新初始化网络环境,以解决由于软件冲突、病毒原因造成的参数错误问题。 netsh是一个能够通过命令行操作几乎所有网络相关设置的接口,比如设置IP,DNS,网卡,无线网络等,Winsock是系统内部目录,Winsock是Windows网络编程接口,winsock工作在应用层,它提供与底层传输协议无关的高层数据传输编程接口,reset是对Winsock的重置操作。当执行完winsock的命令重启计算机后,需要重新配置IP。