1.虚拟机无法远程连接
解决方法:没有装ssh,但装好后还是无法通过xshell连接,如下图
百度后,在 /etc/ssh/sshd_config的配置文件中添加:
Ciphers aes128-cbc,aes192-cbc,aes256-cbc,aes128-ctr,aes192-ctr,aes256-ctr,3des-cbc,arcfour128,arcfour256,arcfour,blowfish-cbc,cast128-cbc
MACs hmac-md5,hmac-sha1,[email protected],hmac-ripemd160,hmac-sha1-96,hmac-md5-96
KexAlgorithms diffie-hellman-group1-sha1,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1,diffie-hellman-group-exchange-sha256,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group1-sha1,[email protected]
重启sshd服务后(sudo service ssh restart),正常连接
2.jdk安装完成后,查看版本时
解决方法:因为centos系统是64位,而安装的jdk是32位软件
运行yum install glibc.i686就OK了
3.安装Tomcat之后,成功启动,能够ping通服务器IP,但网页却访问不了Tomcat默认页面。
首先查看默认的8080端口状态,已启动
解决方法:无法访问可能是防火墙未关闭,关闭后,成功访问
4.git编译时出错
解决方法:先编译基础环境yum -y install gcc make
要确保已安装了依赖的包 yum install -y curl curl-devel zlib-devel openssl-devel perl perl-devel cpio expat-devel gettext-devel,终于顺利通过编译。
5. 然而 安装时又出现如下错误。(云服务器上就是这个错误啊啊啊)
后来看到搜到一篇文章,按里面的步骤www.tuicool.com/articles/Y3eqIf可以成功安装
6.git安装成功,但是无法查看版本号
解决方法:打开/etc/profile, 找到path manipulation那一行,在下面的if then中添加 pathmunge 命令路径 (如:pathmunge /etc/local/git/bin)。然后执行source /etc/profile, 再次执行git --version就可执行成功,会显示git的版本号。
7.安装Jenkins之后,页面访问出错
解决方法:安装glibc-devel
终于完成了,开心开心。
总结:
1.基础太差,导致有时候不知道怎么找解决方案,甚至找到了也不是很理解,需要花时间好好补充。
2.Linux命令需要多敲多练,不然一段时间就生疏了。
3.只要是问题就一定有解决办法
4.不放弃