随笔分类 -  DevOps

摘要: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 代码诠释的世界 阅读(269) 评论(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 代码诠释的世界 阅读(22110) 评论(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 代码诠释的世界 阅读(1298) 评论(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 代码诠释的世界 阅读(399) 评论(0) 推荐(0) 编辑
摘要:1. 报错 2. 处理 ubuntu sudo apt install net-tools centos yum -y install net-tools 阅读全文
posted @ 2022-03-29 17:38 代码诠释的世界 阅读(42) 评论(0) 推荐(0) 编辑
摘要:1. 创建docker用户组 sudo groupadd docker 2. 添加当前用户加入docker用户组 sudo usermod -aG docker ${USER} 3. 重启docker服务 sudo systemctl restart docker 4、生效配置 sudo newgr 阅读全文
posted @ 2022-03-25 14:05 代码诠释的世界 阅读(12077) 评论(1) 推荐(1) 编辑
摘要:1. 官网 https://www.jumpserver.org/ 2.github https://github.com/jumpserver/jumpserver.git 3.文档 https://docs.jumpserver.org/zh/master/install/setup_by_fa 阅读全文
posted @ 2022-03-25 13:39 代码诠释的世界 阅读(1908) 评论(0) 推荐(0) 编辑
摘要:1. 原因 竞争 2. 基本概念 bcdedit 是一个启动选项编辑工具,用来管理启动设置。 BCDEdit 不是一个运行于图形界面下的程序,而是一个命令行工具,该文件 (Bcdedit.exe) 位于 “\Windows\System32” 目录下。通过命令行工具 Bcdedit ,我们可以添加、 阅读全文
posted @ 2022-03-25 11:56 代码诠释的世界 阅读(274) 评论(0) 推荐(0) 编辑
摘要:1. 安装openssh-server sudo apt-get install openssh-server 2、会安装相关依赖包 ~$ dpkg -l | grep ssh ii libssh-4:amd64 0.9.3-2ubuntu2.2 amd64 tiny C SSH library ( 阅读全文
posted @ 2022-03-25 11:42 代码诠释的世界 阅读(292) 评论(0) 推荐(0) 编辑
摘要:1. 各大源官网 https://mirrors.tuna.tsinghua.edu.cn/ http://mirrors.163.com/ https://developer.aliyun.com/mirror/ https://mirrors.ustc.edu.cn/ https://mirro 阅读全文
posted @ 2022-03-25 11:34 代码诠释的世界 阅读(2002) 评论(0) 推荐(0) 编辑
摘要:1、显示行号, :set nu 2、隐藏行号, :set nonu 3、持久化配置 sudo vim /etc/vim/vimrc 文件中加入 阅读全文
posted @ 2022-03-17 17:03 代码诠释的世界 阅读(194) 评论(0) 推荐(0) 编辑
摘要:1、使用vim打开文件 $ vim /var/log/mail.log 2、使用 “/后跟要搜索的字符串”, 然后按回车 3、然后按小写‘n’ , 查找下一个 4. 大写'N', 查找上一个 5. 设置高亮显示, :set nohlsearch 6. 设置非高亮显示, :nohlsearch或者:s 阅读全文
posted @ 2022-03-17 16:53 代码诠释的世界 阅读(4654) 评论(0) 推荐(0) 编辑
摘要:1. 命令帮助 -> % ln --help Usage: ln [OPTION]... [-T] TARGET LINK_NAME (1st form) or: ln [OPTION]... TARGET (2nd form) or: ln [OPTION]... TARGET... DIRECT 阅读全文
posted @ 2022-03-16 11:24 代码诠释的世界 阅读(5078) 评论(0) 推荐(0) 编辑
摘要:1. 打开服务器的.ssh/authorized_keys vim .ssh/authorized_keys 2. 将客户机的公钥复制到服务器的.ssh/authorized_keys文件内 3. 客户端测试链接 ssh test@192.168.1.100 阅读全文
posted @ 2022-03-10 14:42 代码诠释的世界 阅读(34) 评论(0) 推荐(0) 编辑
摘要:一.、Junit 1、官网 https://junit.org/junit5/ https://junit.org/junit4/ 2、github https://github.com/junit-team/junit5/ 二、TestNG 1、官网 https://testng.org/doc/ 阅读全文
posted @ 2022-03-03 11:41 代码诠释的世界 阅读(93) 评论(0) 推荐(0) 编辑
摘要:一. pep8 1. 官网 https://www.python.org/dev/peps/pep-0008/ https://pypi.python.org/pypi/flake8/ 2. 安装 pip install pep8 3. 使用 flake8 [file name or directo 阅读全文
posted @ 2022-03-02 17:50 代码诠释的世界 阅读(190) 评论(0) 推荐(0) 编辑
摘要:1. 第三方库 pip install jira 2. 官方文档 https://jira.readthedocs.io/examples.html 3. 使用方法 form jira import JIRA jira = JIRA('http://jira.***.com/', auth=(use 阅读全文
posted @ 2022-03-02 14:14 代码诠释的世界 阅读(428) 评论(0) 推荐(0) 编辑
摘要:1. 现象 2. 处理方法 ps aux | grep elastic kill -9 [pid] 参考链接: https://blog.csdn.net/davidchang365/article/details/103254012 阅读全文
posted @ 2022-03-01 14:56 代码诠释的世界 阅读(249) 评论(0) 推荐(0) 编辑
摘要:1.问题 jenkins打包镜像报错 2. 处理方法 修改Dockerfile 名称为dockerfile 参考链接: https://www.cnblogs.com/rohens-hbg/p/14212145.html 阅读全文
posted @ 2022-03-01 12:15 代码诠释的世界 阅读(1066) 评论(0) 推荐(0) 编辑
摘要:1. 官网 https://docs.docker.com/engine/reference/commandline/system_prune/ 2. 方法 docker system prune 命令可以用于清理磁盘,删除关闭的容器、无用的数据卷和网络,以及dangling镜像(即无tag的镜像) 阅读全文
posted @ 2022-03-01 12:10 代码诠释的世界 阅读(733) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示