赞
踩
提示:常见问题的解决
问题①:
编译安装时问题:Can’t locate IPC/Cmd.pm in @INC (@INC contains,是因缺少依赖包所引起的
解决办法:yum -y install perl-IPC-Cmd
然后再重新编译安装
问题②
输入:openssl version 验证办时,报错 openssl: error while loading shared libraries: libssl.so.3: cannot open shared object file: No such file or directory
原因分析:旧版本库可能是’lib’,新版本编译后是’lib64’,故 编译完成后检测自己安装的路径lib库名称,我的安装路径为/usr/local/openssl
解决办法:
echo “/usr/local/openssl/lib64” >> /etc/ld.so.conf
ldconfig -v
问题1:编译安装时报错,make: *** No rule to make target `install '. Stop.
原因,本人太菜就不太清楚了,说不上来。
解决办法:make && make install 不要用符号连着使用
有时会报错有时又正常,挺纳闷的,有知道的大佬,欢迎吐槽。
问题2:
启动ssh后,systemctl status sshd 查看ssh的状态时发现有错误警告(Unsupported option GSSAPIAuthentication、Unsupported option GSSAPICleanupCredentials)
原因:新版本不支持
解决办法:vim /etc/ssh/sshd_config,注释掉下面参数
#GSSAPIAuthentication yes
#GSSAPICleanupCredentials yes
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。