自动化运维 Shell

简介:

下面是我多年整理并使用多少的Shell 分享给大家。说起自动化运维很多人会谈到 puppet, ansible,saltstack 这些工具我都使用了,最终都放弃了。这些工具前期配置太耗时间,扩展也不方便,适合傻瓜化运维,对于有15年软件开发经验的我更喜欢,自由,随心所欲。最 终我选择了自行维护 shell , 将shell 模块化,根据需要组合。

 

github 地址 :  https://github.com/oscm/shell

 

下面举例,安装一个web 服务器。

 

Bash代码   收藏代码
  1. curl -s https://raw.githubusercontent.com/oscm/shell/master/os/centos7.sh | bash  
  2. curl -s https://raw.githubusercontent.com/oscm/shell/master/os/iptables.sh | bash  
  3. curl -s https://raw.githubusercontent.com/oscm/shell/master/lang/gcc/gcc.sh | bash  
  4. curl -s https://raw.githubusercontent.com/oscm/shell/master/web/nginx/nginx.centos7.sh | bash  
  5. curl -s https://raw.githubusercontent.com/oscm/shell/master/lang/php/5.6.9-centos7.sh | bash  
  6. curl -s https://raw.githubusercontent.com/oscm/shell/master/lang/php/pecl/redis.sh | bash  
  7. curl -s https://raw.githubusercontent.com/oscm/shell/master/lang/php/pecl/pthreads.sh | bash  
  8. curl -s https://raw.githubusercontent.com/oscm/shell/master/lang/php/pecl/amqp.sh | bash  
  9. curl -s https://raw.githubusercontent.com/oscm/shell/master/lang/php/pecl/phalcon.sh | bash  

 

目录
相关文章
|
4月前
|
Shell Linux
shell 脚本常用于自动化执行文件备份与压缩的任务
shell 脚本常用于自动化执行文件备份与压缩的任务
32 1
|
6月前
|
运维 Shell C语言
运维(20)- shell awk
运维(20)- shell awk
35 0
|
6月前
|
运维 安全 Shell
运维(18)-shell find
运维(18)-shell find
22 0
|
4月前
|
Unix Shell Linux
在Unix/Linux操作系统中,Shell脚本广泛用于自动化任务
在Unix/Linux操作系统中,Shell脚本广泛用于自动化任务
28 2
|
13天前
|
存储 弹性计算 运维
自动化收集员工信息的Shell脚本
【4月更文挑战第30天】
13 0
|
6月前
|
运维 Shell 测试技术
运维(23)- shell自动化部署
运维(23)- shell自动化部署
44 0
|
2月前
|
监控 Shell 持续交付
利用Shell脚本自动化员工电脑监管软件的部署流程
在企业管理中,对员工的电脑活动进行监管是一项重要任务。而为了实现这一目标,部署监管软件是必不可少的。本文将介绍如何利用Shell脚本来自动化部署员工电脑监管软件的流程。我们将演示如何使用Shell脚本来自动下载、安装和配置监管软件,并且在部署完成后自动启动服务。
164 4
|
4月前
|
存储 运维 Shell
Shell内置命令大全,Linux运维工程师收藏!
Shell内置命令大全,Linux运维工程师收藏!
174 0
Shell内置命令大全,Linux运维工程师收藏!
|
4月前
|
运维 Linux 网络安全
利用群晖NAS+shell脚本实现运维命令执行结果文件自动上传
利用群晖NAS+shell脚本实现运维命令执行结果文件自动上传
138 0
|
4月前
|
存储 Shell
Shell编程自动化之if、for、while和函数
本文主要介绍了Shell编程自动化之if、for、while和函数,并结合实例测试。
28 3

热门文章

最新文章