英文 wiki
http://en.wikipedia.org/wiki/DevOps
網友阿舍兄的中文註解
http://www.arthurtoday.com/2011/10/devops.html
另外我覺得這邊寫的滿簡單易懂的, 還有圖解!
http://dev2ops.org/blog/2010/2/22/what-is-devops.html
Dep2ops 網站
http://dev2ops.org/
Choreography | Orchestration | |
Point of View | the logic of the message-based interactions among the participants are specified from a global perspective | the logic is specified from the local point of view of one single participant, called the orchestrator. |
Message exchange | a protocol for peer-to-peer interactions | specifies an executable process that involves message exchanges with other systems, such that the message exchange sequences are controlled by the orchestration designer |
Control | a distributed system which operates according to rules but without centralized control | central control of the behavior of a distributed system |
/var/www/cobbler
to unpack that DVD/ISO# Review the procedure below. The command arguments "--foo=bar" will need to vary locally. # Install cobbler. The command below assumes a Redhat-like OS. yum install cobbler # Show what aspects might need attention cobbler check # Act on the 'check' above, then re-check until satisfactory. # (Details beyond the scope of this particular example.) # Import a client OS from a DVD. This automatically sets up a "distro" and names it. # (See below ISO file variant.) cobbler import --path=/mnt --name=rhel5 --arch=x86_64 # Create a profile (e.g. "rhel5_workstation") and associate it with that distro cobbler profile add --name=rhel5_workstation --distro=rhel5 # Set up a kickstart file. # (Details beyond the scope of this particular example.) # Associate a kickstart file with this profile cobbler profile edit --name=rhel5_workstation --kickstart=/path/to/kick.ks # Register a client machine (e.g. "workstation1") and its network details # and associate it with a profile cobbler system add --name=workstation1 \ --mac=AA:BB:CC:DD:EE:FF --ip=III.JJJ.KKK.LLL \ --profile=rhel5_workstation \ --netboot-enabled=true # Get a detailed report of everything in cobbler cobbler report # Get cobbler to act on all the above (set up DHCP, etc.) cobbler sync
yum install php yum install php-cli yum install php-gd yum install php-xml yum update "*php*" yum install php-pear yum install gcc pecl install json cd /etc/php.d/ echo "extension=json.so" >> json.ini service httpd restart