摘要: 1 下载Ant 官网下载 http://ant.apache.org/ 2 解压缩 unzip解压缩 3 配置环境变量 # 打开配置文件 vim /etc/profile # 在文件最后添加ant环境 export ANT_HOME=/opt/ant # 并把ant环境添加到path中 export 阅读全文
posted @ 2021-04-27 11:25 中二越 阅读(100) 评论(0) 推荐(0) 编辑
摘要: maven网址: http://maven.apache.org/download.cgi 相关代码 # 下载路径 cd /opt/maven # 下载命令 wget http://mirrors.hust.edu.cn/apache/maven/maven-3/3.6.3/binaries/apa 阅读全文
posted @ 2021-04-27 11:18 中二越 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 1. 使用EPEL安装 先确认系统是否已经安装了epel-release包: yum info epel-release 如果有输出有关epel-release的已安装信息,则说明已经安装,如果提示没有安装或可安装,则安装 sudo yum install epel-release 安装完后,就可以 阅读全文
posted @ 2021-04-27 11:16 中二越 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 1 下载Go 网址:https://studygolang.com/dl 当前最新版本:https://studygolang.com/dl/golang/go1.15.6.linux-amd64.tar.gz cd /opt mkdir go cd go wget https://studygol 阅读全文
posted @ 2021-04-27 11:07 中二越 阅读(146) 评论(0) 推荐(1) 编辑
摘要: 起因 CentOS7自带Git1.8版本,版本太低。 更新步骤 1 卸载旧版本Git yum remove git 2 下载依赖(环境配置) yum install -y curl-devel expat-devel gettext-devel openssl-devel zlib-devel as 阅读全文
posted @ 2021-04-27 10:12 中二越 阅读(279) 评论(0) 推荐(0) 编辑
摘要: 1 下载并安装MySQL wget -i -c https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm yum -y install mysql80-community-release-el7-3.noarch.rpm 阅读全文
posted @ 2021-04-27 09:56 中二越 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 1 查看tomcat状态 如果没有tomcat会报错。 systemctl status tomcat.service //或者 systemctl status tomcat 2 安装tomcat 腾讯云的镜像没有tomcat,需要手动下载。 yum install tomcat //或者 -y代 阅读全文
posted @ 2021-04-26 21:38 中二越 阅读(154) 评论(0) 推荐(0) 编辑