上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: ####1.下载Jenkins的RPM包 下载地址https://mirrors.tuna.tsinghua.edu.cn/jenkins/redhat/ #下载 wget https://mirrors.tuna.tsinghua.edu.cn/jenkins/redhat/jenkins-2.2 阅读全文
posted @ 2021-01-15 16:52 dkn 阅读(3503) 评论(0) 推荐(0) 编辑
摘要: ####进入指定目录 cd /usr/local/src/ ####下载maven包,打开 http://mirrors.hust.edu.cn/apache/maven/maven-3/ 看自己安装版本 wget http://mirrors.hust.edu.cn/apache/maven/ma 阅读全文
posted @ 2021-01-15 16:47 dkn 阅读(913) 评论(0) 推荐(0) 编辑
摘要: 阿里云参考:https://developer.aliyun.com/mirror/centos 清华参考:https://mirrors.tuna.tsinghua.edu.cn/help/centos/ 阿里云: mv /etc/yum.repos.d/CentOS-Base.repo /etc 阅读全文
posted @ 2021-01-15 16:36 dkn 阅读(1583) 评论(0) 推荐(0) 编辑
摘要: 网速好的使用yum安装,不好的使用rpm安装 地址:https://www.cnblogs.com/daikainan/p/14282962.html ####1、安装JDK,已安装忽略 yum install -y java ####2、安装jenkins 添加Jenkins库到yum库,Jenk 阅读全文
posted @ 2021-01-15 16:34 dkn 阅读(3590) 评论(0) 推荐(0) 编辑
摘要: ###安装maven yum安装方式,网速好可以正常安装,网速不好请手动安装,参考地址 https://www.cnblogs.com/daikainan/p/14282925.html #配置源 wget http://repos.fedorapeople.org/repos/dchen/apac 阅读全文
posted @ 2021-01-15 15:41 dkn 阅读(4425) 评论(0) 推荐(0) 编辑
摘要: ###安装git #查看安装版本,确定是否安装 git --version #开始安装 yum install -y git #再次查看安装是否成功 git --version #卸载git yum remove git ###安装svn #安装 yum -y install subversion 阅读全文
posted @ 2021-01-15 15:28 dkn 阅读(436) 评论(0) 推荐(0) 编辑
摘要: ###安装jdk1.8 mkdir /usr/local/java cd /usr/local/java #解压 tar -zxvf jdk-8u211-linux-x64.tar.gz #删除安装包 rm jdk-8u211-linux-x64.tar.gz vi /etc/profile #环境 阅读全文
posted @ 2021-01-15 14:42 dkn 阅读(274) 评论(0) 推荐(0) 编辑
摘要: ####安装nodejs curl --silent --location https://rpm.nodesource.com/setup_10.x | bash - yum install -y nodejs node -v ####安装npm npm install -g cnpm --reg 阅读全文
posted @ 2021-01-15 14:11 dkn 阅读(697) 评论(0) 推荐(0) 编辑
摘要: ####查看hostname [root@centos ~]$ hostname centos 修改hostname [root@localhost ~]$ hostnamectl set-hostname centos001 # 第一种、使用这个命令会立即生效且重启也生效 [root@localh 阅读全文
posted @ 2021-01-15 03:25 dkn 阅读(873) 评论(0) 推荐(0) 编辑
摘要: docker学习教程,参考 https://www.runoob.com/docker ####查看docker版本 docker version ####Docker镜像命令 命令 用途 示例 docker pull name:tag 下载镜像 docker pull nginx:1.17.0 d 阅读全文
posted @ 2021-01-15 03:06 dkn 阅读(186) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页