
软件安装
文章平均质量分 64
运维小菜
加油
展开
-
ansible安装配置与17个常用模块
这里写目录标题一、centos8.3安装ansible二、安装后的基本配置三、常用模块的使用1.command--默认的默认模块2.shell模块(command 加强版)3.修改默认模块4.script模块5.copy模块6.fetch模块7.file模块8.unarchive模块9.archive模块一、centos8.3安装ansible安装epel源sudo dnf install https://dl.fedoraproject.org/pub/epel/epel-release-lates原创 2021-07-27 11:01:33 · 409 阅读 · 0 评论 -
python pip方式安装ansible2.9.*版本--centos7.5
安装依赖:yum install gcc zlib-devel openssl-devel readline-devel -y安装pythonwget https://www.python.org/ftp/python/3.6.6/Python-3.6.6.tgztar xvf Python-3.6.6.tgzcd Python-3.6.6/./configure --prefix=/usr/local/python/ make && make install/usr/lo原创 2021-07-25 15:40:47 · 451 阅读 · 0 评论 -
linux-10条命令完成在centos安装GitLab
10条命令完成在centos安装GitLab1.yum -y install policycoreutils-cycoreutils openssh-server openssh-clients postfix2.systemctl enable sshd && sudo systemctl start sshd3.systemctl enable postfix && systemctl start postfix(如果关闭防火墙可省略下面三步)firewall原创 2021-07-04 09:47:39 · 114 阅读 · 0 评论 -
jenkins从安装到一键构建成功(maven、git、jdk配置)
1、安装jdkyum -y install java-1.8.0-openjdk*2、下载jenkins的rpm包https://mirrors.tuna.tsinghua.edu.cn/jenkins/redhat/jenkins-2.190.3-1.1.noarch.rpm3、执行安装rpm -ivh jenkins-2.244-1.1.noarch.rpm4、修改配置vi /etc/sysconfig/jenkins5、启动systemctl start jenkins6、浏览器登原创 2021-07-07 22:51:11 · 748 阅读 · 3 评论