: This article mainly introduces the PHP700 one-click installation script. if you are interested in the PHP Tutorial, refer to it. OSCM (Operation System Configure Management) is an automated O & M script project created by me to provide agile O & M. Traditional automated O & M tools such as ansible, saltstack, and puppet are not flexible enough, complicated configurations, and many restrictions. These tools are more suitable for O & M personnel without the foundation of software development. These tools are a weakness for people from software engineers to O & M.
Https ://Github. Com/oscm/shell/
I write common O & M into Shell fragments and use them in combination based on different environments. Because it is written in shell, it may be free to use, without any restrictions, 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 introduces the PHP 700 one-click installation script, including centos7 and github, and hopes to help those who are interested in PHP tutorials.