博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PHP 7.0.0 一键安装脚本
阅读量:6368 次
发布时间:2019-06-23

本文共 1066 字,大约阅读时间需要 3 分钟。

OSCM (Operation System Configure Management) 是我创建的一个自动化运维脚本的项目,旨在提供敏捷运维。传统自动化运维工具例如  , ,  不够灵活,配置繁琐,很多限制等等。这些工具更适合没有软件开发基础的运维人员。对于从软件工程师转到运维领域的人,这些工具就是鸡肋。 

我将常用的运维写成 Shell 片段,根据环境的不同,加以组合使用。由于是shell 编写,可能自由发挥,不受任何限制,更灵活。

 

Nginx 安装脚本

1
2
3
4
curl -s https:
//raw
.githubusercontent.com
/oscm/shell/master/os/centos7
.sh | 
bash
curl -s https:
//raw
.githubusercontent.com
/oscm/shell/master/os/ntpd/ntp
.sh | 
bash
curl -s https:
//raw
.githubusercontent.com
/oscm/shell/master/os/user/www
.sh | 
bash
curl -s https:
//raw
.githubusercontent.com
/oscm/shell/master/web/nginx/nginx
.centos7.sh | 
bash

 

PHP 安装脚本

1
2
3
4
5
curl -s https:
//raw
.githubusercontent.com
/oscm/shell/master/os/user/www
.sh | 
bash
curl -s https:
//raw
.githubusercontent.com
/oscm/shell/master/lang/gcc/gcc
.sh | 
bash
curl -s https:
//raw
.githubusercontent.com
/oscm/shell/master/lang/php/devel
.sh | 
bash
curl -s https:
//raw
.githubusercontent.com
/oscm/shell/master/lang/php/php-7
.0.0.sh | 
bash
curl -s https:
//raw
.githubusercontent.com
/oscm/shell/master/lang/php/php-7
.0.0-default.sh  | 
bash

转载地址:http://hcgma.baihongyu.com/

你可能感兴趣的文章
『Data Science』R语言学习笔记,获取数据
查看>>
rails中n秒页面自动跳转
查看>>
我的友情链接
查看>>
忘记root用户密码怎么办?
查看>>
esxi定时任务
查看>>
Scaffold-DbContext
查看>>
关于VMware Workstation主机列表问题求教
查看>>
配置管理小报101021:给ubuntu加监控
查看>>
qml文字滚动效果的封装,实现方式运用的qml中提供的动画效果,另一种实现方式也可以使用定时器修改控件的坐标来实现...
查看>>
标准C++实现任务队列
查看>>
jdbc url
查看>>
刷leetcode第704题-二分查找
查看>>
debug_backtrace() 函数生成一个 backtrace(追踪)
查看>>
第七天,还是盒子
查看>>
XAMPP软件包下载
查看>>
XXL-JOB初体验-ORACLE版
查看>>
沉思录:别人的棺材
查看>>
jersey + spring + mybatis + redis项目搭建
查看>>
PAT 1006 部分正确_另一种解法
查看>>
在Keil环境下使用JLink实现printf输出重定向至debug窗口
查看>>