OSCM (Operation System Configure Management) is a project I created for an automated OPS script designed to provide agile operation and Maintenance. Traditional automated operations tools such asAnsible, Saltstack,puppet is not flexible, configuration cumbersome, a lot of restrictions and so on. These tools are more suitable for OPS people without the foundation of software development. These tools are chicken ribs for those who move from software engineers to operations.
https://GitHub. com/oscm/shell/
I write the usual operations into Shell fragments, which are used in combination according to the different environments. Because the shell is written, it may be free to play, unrestricted, and more flexible.
Nginx Installation Script
?
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 Installation Script
?
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
|
The above describes the PHP 7,001 key installation script, including the centos7,github aspects of the content, I hope to be interested in PHP tutorial friends helpful.