上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 51 下一页
摘要: 1. 方法一:[[ "${array[@]}" =~ "字符串" ]] names="This is a computer , I am playing games in the computer" if [[ "${names[@]}" =~ "playing" ]]; then echo 'st 阅读全文
posted @ 2022-03-31 15:56 代码诠释的世界 阅读(770) 评论(0) 推荐(0)
摘要: 1. 方法一:${JAVA_ALLOWED_VERSIONS[*]} =~ "$JAVA_VERSION" JAVA=`type -p java` JAVA_ALLOWED_VERSIONS=( "1.8" "11" ) # Work out the JAVA version we are work 阅读全文
posted @ 2022-03-31 15:51 代码诠释的世界 阅读(1375) 评论(0) 推荐(0)
摘要: 1. 问题现象 报错现象类似 https://blog.csdn.net/ZYStefanie/article/details/112358315 2. 处理方法 sudo vim /etc/init.d/jenkins 修改原来的Java_version匹配规则 JAVA_VERSION=$($J 阅读全文
posted @ 2022-03-31 15:39 代码诠释的世界 阅读(384) 评论(0) 推荐(0)
摘要: 1. 问题现象 2. 权限问题处理方法 sudo chown -R jenkins:jenkins /var/lib/jenkins sudo chown -R jenkins:jenkins /var/cache/jenkins sudo chown -R jenkins:jenkins /var 阅读全文
posted @ 2022-03-31 15:32 代码诠释的世界 阅读(286) 评论(0) 推荐(0)
摘要: 1. 官网 https://www.atlassian.com/software/jira/guides https://docs.atlassian.com/software/jira/docs/api/ 2. 安装mysql https://www.cnblogs.com/fireblackma 阅读全文
posted @ 2022-03-31 11:01 代码诠释的世界 阅读(25079) 评论(5) 推荐(0)
摘要: 1. 问题 这个问题是因为我重新安装, 没删除原来的数据库 2. 处理方法 因为存在相同的数据库,没清空, 然后删除重建即可 mysql -h localhost -u root -p create database jira default character set utf8 collate u 阅读全文
posted @ 2022-03-30 21:17 代码诠释的世界 阅读(1440) 评论(0) 推荐(0)
摘要: 1. 编辑配置 2. 重启生效 sudo systemctl daemon-reload sudo systemctl restart docker.service 3. 检查端口 4. 客户端配置 # ip改成远程服务器的ip export DOCKER_HOST=tcp://127.0.0.1: 阅读全文
posted @ 2022-03-29 18:03 代码诠释的世界 阅读(454) 评论(0) 推荐(0)
摘要: 1. 报错 2. 处理 ubuntu sudo apt install net-tools centos yum -y install net-tools 阅读全文
posted @ 2022-03-29 17:38 代码诠释的世界 阅读(54) 评论(0) 推荐(0)
摘要: 1. 下载官方检查工具 首先,先下载微软官方的【电脑健康状况检查应用】:https://aka.ms/GetPCHealthCheckApp 2、官网介绍 官方介绍 https://support.microsoft.com/zh-cn/windows/%E5%9C%A8%E7%94%B5%E8%8 阅读全文
posted @ 2022-03-29 16:47 代码诠释的世界 阅读(716) 评论(0) 推荐(0)
摘要: 1. 安装WSL https://docs.microsoft.com/zh-cn/archive/blogs/wsl/ 2. 安装桌面版docker 下载 https://www.docker.com/get-started/ 双击安装 3. 开放docker daemon TCP端口 4. WS 阅读全文
posted @ 2022-03-25 14:38 代码诠释的世界 阅读(606) 评论(0) 推荐(0)
上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 51 下一页