码迷,mamicode.com
首页 >  
搜索关键字:ansible 公钥    ( 5774个结果
linux配置rsa秘钥登陆
相比密码登陆,rsa秘钥登陆的安全性高很多,重点:防爆破 首先在服务器生成公钥和秘钥 ssh-keygen -b 1024 -t rsa -b 是加密位数 -t 是类型 然后有三个步骤(你懒的话直接回车三次完事) Enter file in which to save the key (/root/ ...
分类:系统相关   时间:2020-12-22 12:08:50    阅读次数:0
Linux 系统初始化准备
1、我们在生产环境中我们需要对服务器系统配置相关优化参数,以下为Centos 7系统相关常用软件安装以及系统参数配置 setenforce 0 sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config sed -i 's/ ...
分类:系统相关   时间:2020-12-19 13:21:26    阅读次数:2
.pfx和.Cer 证书
通常情况下,作为文件形式存在的证书一般有三种格式: 第一种:带有私钥的证书,由Public Key Cryptography Standards #12,PKCS#12标准定义,包含了公钥和私钥的二进制格式的证书形式,以.pfx作为证书文件后缀名。 第二种:DER Encoded Binary (. ...
分类:其他好文   时间:2020-12-15 12:14:10    阅读次数:2
什么是PKI?主要作用是什么?
#背景描述 在使用cfssl的时候会提到cfssl是cloudflare的pki/tls工具,这么这个PKI到底是什么意思? #PKI全称 PKI = Publick Key Infrastructure 公钥基础设施 #PKI的作用 公钥基础设施顾名思义,就是个工具,主要的作用就是管理公钥的。 大 ...
分类:其他好文   时间:2020-12-11 12:07:35    阅读次数:3
SaaS技术栈有多复杂?
【特别声明:本文基于Tools and Services I Use to Run My SaaS进行修改。】 软件SaaS化由于需要考量架构的各个方面,所以需要的技术栈非常全面。 以一个客户管理SaaS应用为例,可能涉及的技术栈包括: 开发 开发就是把系统做出来的意思。开发涉及编码、项目管理、测试 ...
分类:其他好文   时间:2020-12-11 12:06:48    阅读次数:4
ansible playbook 安装docker
1.新增host配置到/etc/ansible/hosts文件中 [docker] 192.168.43.95 2.配置无密码登录 # 配置ssh,默认rsa加密,保存目录(公钥)~/.ssh/id_rsa.pub ssh-keygen -t rsa # 配置无密码登陆,这里需要分别4次发送至4台服 ...
分类:其他好文   时间:2020-12-09 12:17:15    阅读次数:4
ansible部署jdk
[root@node1 tasks]# cat main.yml name: 拷贝JKD到目标服务器 unarchive: src={{ jdk_pkg }} dest={{ jdk_dir }} mode=755 name: 添加环境变量 blockinfile: dest: /etc/profi ...
分类:其他好文   时间:2020-12-09 12:12:06    阅读次数:6
linux 免密登录- 秘钥登录
以windows登录linux为例生产秘钥对切记,生产时不用输入密码,直接回车即可公钥放在linux服务器上目录为~/.ssh/catid_rsa.pub>>authorized_keys执行chmod755*登录验证sshusername@ip-pport-i~.ssh\dev_docker_id_rsa如果登录成功,就ok
分类:系统相关   时间:2020-12-09 12:00:15    阅读次数:8
git:Please make sure you have the correct access rights and the repository exists.问题解决
问题描述:把本地库里的内容推送到远程库的时候出错? git push -u origin master fatal: Could not read from remote repository. Please make sure you have the correct access rights ...
分类:数据库   时间:2020-12-09 11:57:01    阅读次数:5
# ad-hoc篇
##1、--list-hosts # 查看所有配置主机 ansible all --list-hosts #查看tt主机组主机 ansible tt --list-hosts ##2、shell模块 语法: ansible [主机组] -m shell -a '[参数]' 注:复杂命令会有出错得可能 ...
分类:其他好文   时间:2020-12-04 11:29:42    阅读次数:5
5774条   上一页 1 ... 6 7 8 9 10 ... 578 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!