自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

  • 博客(26)
  • 收藏
  • 关注

转载 [Bash] Shift 命令

shift#This is a BASH shell builtin, to display your local syntax from the bash prompt type: help shift-bash-4.1$ help shiftshift: shift [n] ...

2019-09-05 18:39:00 376

转载 ORA-12516 或 ORA-12519 问题分析和处理

ORA-12516: TNS:listener could not find available handler with matching protocol stackORA-12519, TNS:no appropriate service handler foundshow para...

2019-08-20 18:22:00 281

转载 AWS S3 CLI - Could not connect to the endpoint URL

$ aws s3 lsCould not connect to the endpoint URL: "https://s3.us-east-1a.amazonaws.com/"You probably have something wrong in your default profi...

2019-08-20 09:17:00 2777

转载 Python 使用 jmespath 来处理 json 数据

遇到json时,我们经常会去做取JSON中某个值的操作,如果是用get方法去取比较繁琐,这里不妨使用jmespath更便捷的方法来解决。下面通过代码来说明jmespath在python中的使用:一.安装pip install jmespath二.查询一个key值import jme...

2019-08-17 23:12:00 549

转载 “没有为扩展名.py找到关联文件”的解决办法

如题,在win7上安装python3.5之后,通过 pip install awscli 命令安装 AWS CLI(Command Line Interface),最后执行aws命令时总是先提示一句"没有为扩展名.py找到关联文件",然后显示执行结果。根据提示和查看相关脚本,发现这是由于系统无...

2019-08-17 17:28:00 946

转载 jar 更新部分文件

C:\Program Files (x86)\Java\jdk1.8.0_102\bin>jar -hIllegal option: hUsage: jar {ctxui}[vfmn0PMe] [jar-file] [manifest-file] [entry-point] [-C ...

2019-08-17 15:40:00 741

转载 执行Git命令时出现 SSL certificate problem 的解决办法

我在 windows下用git clone gitURL就提示 SSL certificate problem: self signed certificate in certificate chain这种问题,在windows下出现得频率高些。我估计主要是git本身就是基于linux开...

2019-08-16 15:20:00 259

转载 预约考取 AWS SysOps Administrator

预约了9月21日 AWS SysOps Administrator Associate 的考试。据说这是比 AWS Solution Architect, AWS Certified Developer 还难的考试。我计划怎样应对?1,阅读官方的 Study Guide2,阅读 aws...

2019-08-16 08:45:00 170

转载 解决find: paths must precede expression

今天在服务器上执行 find ./ -mtime +30 -type f -name .php的时候,报下面的错误:find: paths must precede expression: 2.txtUsage: find [-H] [-L] [-P] [-Olevel] [-D help...

2019-08-13 11:53:00 394

转载 LOA 的四个级别

Levels of AssuranceWhat are Levels of Assurance (LOA)?什么是担保级别?1 - Basic Identity用户名This level deals with a username, User Principle Name (UPN)...

2019-08-13 11:04:00 576

转载 nohup 和 & 的区别

nohup 的定义man nohupnohup - run a command immune to hangups, with output to a non-tty运行一条命令,对挂起免疫,输出到非tty。& 的特点当前任务会放在后台进行(ctrl c不会终止)如果有...

2019-08-13 09:43:00 160

转载 nohup 和 &

nohup 是 no hangups 的缩写学习一个指令,最好从官方文档看:官网地址:http://www.gnu.org/software/coreutils/manual/html_node/nohup-invocation.html#nohup-invocationnohup 不...

2019-08-13 09:20:00 95

转载 Oracle spool 命令的入门使用

SQL*PLUS 的 spool 命令,意思是把接下来运行的 SQL 语句及其标准输出重定向到指定的文件中去。典型用法:spool "mysql.log"set define off;SQL1;SQL2;...SQLN;commit;spool off;'set d...

2019-08-06 18:39:00 390

转载 远程桌面如何退出全屏或全屏切换

在远程登录到服务器上时(mstsc.exe),一般都会切换到全屏状态来进行操作,但全屏后发现桌面顶部没有浮动工具栏,无法退出全屏状态,怎么能切换回去呢?方法是使用快捷键“Ctrl + Alt + Break”在非全屏状态下,如果想快速切换到全屏状态,也使用此方法。 ...

2019-08-06 17:05:00 7916

转载 凭 Windows 7 的 远程桌面连接 使用多台显示器

Use multiple monitors with Windows 7's Remote Desktop Connectionhttps://www.techrepublic.com/blog/windows-and-office/use-multiple-monitors-with-wi...

2019-08-05 18:39:00 805

转载 在 centos7上 python2 和 python3 共存

一、解决Python2 pip问题centos7自带的是Python2,但是并没有安装pip,我们需要自行安装 包名为 python-pip# yum install epel-release -y# yum -y install python-pip// 安装完成后不是最新的pip版...

2019-08-04 13:36:00 110

转载 Kubernetes 的几个重要概念

ClusterCluster 是计算、存储和网络资源的集合,Kubernetes 利用这些资源运行各种基于容器的应用。MasterMaster 是 Cluster 的大脑,它的主要职责是调度,即决定将应用放在哪里运行。Master 运行 Linux 操作系统,可以是物理机或虚拟机。为了实...

2019-07-17 08:49:00 86

转载 在 CentOS 7 上安装和配置 Puppet

1 准备2台 centos7 (master/server:192.168.1.103 agent/client:192.168.1.106)分别添加puppet自定义仓库 https://yum.puppet.com/puppet6-release-el-7.noarch.rpm2...

2019-07-16 09:58:00 168

转载 如何处理Eclipse错误消息 The declared package does not match the expected package

我从 https://start.spring.io/ 下载了一个SpringBoot项目后,导入到自己的STS(Spring Tool Suite)之后,遇到了这个烦人的错误消息:The declared package "com.sap.smartService" does not ma...

2019-07-10 22:57:00 1596

转载 Linux shell 脚本中使用 alias 定义的别名

核心知识点: 用 shopt 开启和关闭 alias 扩展交互模式下alias 扩展默认是开启的,脚本模式下默认是关闭的 ****alias 扩展的名称是 expand_aliasesalias 定义在当前session中,可以直接在命令行执行 alias alias-name-d...

2019-07-07 08:08:00 426

转载 Docker Daemon Failed,并且重启失败

今天突然发现运行在 Docker 容器里的 Jenkins 无法登录了。运行 systemctl status docker,看见它的状态是 Failed。试图重启,报告Job for docker.service failed because the control process ex...

2019-07-04 18:33:00 2698

转载 [Docker] 构建 redis-cli 镜像

DockerfileFROM alpineMAINTAINER Stanislav Serebrennikov <goodsmileduck@gmail.com>ENV REDIS_VERSION 5.0.5ENV REDIS_DOWNLOAD_URL http://do...

2019-06-27 15:38:00 514

转载 WARNING: IPv4 forwarding is disabled. Networking will not work.

今天在虚拟机CentOS7中运行docker run -it --rm busybox,出现下命的警告[root@radar epm-shrm]# docker run -it --rm busyboxWARNING: IPv4 forwarding is disabled. Netwo...

2019-06-26 15:24:00 93

转载 在CentOS7上安装Python3

CentOS7 里默认的Python是版本2.7.5。我需要按照 Python 3。2019年6月25日,从官方下载最新的发行版 Python 3.7.3 。解压缩,./configure --prefix=/usr/local/python3make && make...

2019-06-26 15:16:00 136

转载 the 9000 port of 10.22.17.132 is not addressable for other servers.

存在的问题the 9000 port of 10.22.17.132 is not addressable for other servers.50070 is not addressable too解决办法firewall-cmd --get-active-zonesfirew...

2019-06-17 14:27:00 76

转载 PuTTY 和 SSH 免密码登录

需求今天在工作中对 ssh key 有了更深的认识。昨天给 Scrum 项目组新建了两台 CentOS 虚拟机,Jeffery 希望能够使用 ppk 文件免密码登录。尝试了几种解决方案。首先是在自己的机器上利用 PuTTYgen (PuTTY Key Generator) 生成一对公钥...

2019-06-14 17:21:00 622

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除