ansible批量一键安装lnmp环境

1、ansible一键安装nginx服务

#nginx_server install
- hosts: 172.16.1.5         根据自己的主机自行定义
  tasks:
    -name: yumpcre-devel
      yum: name=pcre-devel
    -name: yum pcre
      yum: name=pcre
    -name: yumopenssl-devel
      yum: name=openssl-devel
    -name: yum openssl
      yum: name=openssl
    -name: create/home/tools/
      file: dest=/home/tools/ state=directory
    -name: createuseradd ningx
      user: name=nginx createhome=no shell=/sbin/nologin
    -name: downloadnginx
      shell: cd /home/tools/ && wget http://nginx.org/download/nginx-1.6.3.tar.gz
    -name:decompression nginx
      shell: cd /home/tools/ && tar -xf nginx-1.6.3.tar.gz
    -name: Toconfigure nginx
      shell: cd /home/tools/nginx-1.6.3 && ./configure --user=nginx --group=nginx--prefix=/application/nginx-1.6.3/ --with-http_stub_status_module--with-http_ssl_module && make && make install
    -name: Softconnection
      file: src=/application/nginx-1.6.3/ dest=/application/nginxstate=link
    -name: start nginx
      shell:/application/nginx/sbin/nginx

2、ansible一键安装mysql服务

#mysql_server install
- hosts: 172.16.1.5         根据自己主机自行定义
  tasks:
    -name: createuseradd mysql
      user: name=mysql createhome=no shell=/sbin/nologin
    -name: create/home/tools
      file: dest=/home/tools state=directory
    -name: downloadmysql
      file: cd /home/tools && wget https://downloads.mysql.com/archives/get/file/mysql-5.6.32-linux-glibc2.5-x86_64.tar.gz
    -name:decompression nginx
      shell: cd /home/tools && tar -xf mysql-5.5.32-linux2.6-x86_64.tar
    -name: create
      file: dest=/application/ state=directory
    -name: move mysql
      shell: cd /home/tools && mvmysql-5.5.32-linux2.6-x86_64 /application/mysql-5.5.32
    -name: Softconnection
      file: src=/application/mysql-5.5.32/dest=/application/mysql state=link
    -name: copy conf
      shell: cd /application/mysql && cpsupport-files/my-small.cnf /etc/my.cnf
    -name: create/application/mysql/data
      file: dest=/application/mysql/data state=directoryowner=mysql group=mysql
    -name:Initialization mysql
      shell: /application/mysql/scripts/mysql_install_db--basedir=/application/mysql --datadir=/application/mysql/data --user=mysql
    -name: copy start_file
      shell: cd /application/mysql && cpsupport-files/mysql.server /etc/init.d/mysqld
    -name: Add executeauthority
      shell: chmod +x /etc/init.d/mysqld
    -name: replaceconfigure_file
      shell: sed -i ‘s#/usr/local/mysql#/application/mysql#g‘ /application/mysql/bin/mysqld_safe/etc/init.d/mysqld
    -name: start mysql
      shell: /etc/init.d/mysqld start
    -name: setenvironment variable
      shell: echo ‘exportPATH=/application/mysql/bin:$PATH‘>>/etc/profile
    -name: source/etc/profile
      shell: source /etc/profile

3、ansible一键安装php服务

#php_server install
- hosts: 172.16.1.5     根据自己主机自行定义
  tasks:
    -name: yum rely on
      yum:name=zlib-devel,libxml2-devel,libjpeg-devel,libjpeg-turbo-devel,freetype-devel,libpng-devel,gd-devel,libcurl-devel,libxslt-devel
    -name: installlibiconv
      shell: cd /home/tools &&wget http://219.239.26.3/files/524500000A03C5BE/ftp.gnu.org/pub/gnu/libiconv/libiconv-1.14.tar.gz
    -name: decompression libiconv
      shell: cd /home/tools &&tar -xf libiconv-1.14.tar.gz
    -name: Toconfigure libiconv
      shell: cd /home/tools/libiconv-1.14 && ./configure --prefix=/usr/local/libiconv && make && make install
    - name:epel
      shell: wget -O /etc/yum.repos.d/epel.repo  http://mirrors.aliyun.com/repo/epel-6.repo
    -name: yumlibmcrypt-devel
      yum: name=libmcrypt-devel,mhash,mcrypt
    - name: downloadphp-5.3.27
      shell: cd /home/tools/ && wget http://php.net/get/php-5.3.27.tar.gz/from/a/mirror
    -name: install php
      shell: cd /home/tools/ &&tar -xf php-5.3.27.tar.gz
    -name: softconnect
      shell: ln -s/application/mysql/lib/libmysqlclient.so.18 /usr/lib64/
    -name: createphar.phar
      shell: touch /home/tools/php-5.3.27/ext/phar/phar.phar
    -name: intophp-5.3.27
      shell: cd /home/tools/php-5.3.27 && ./configure --prefix=/application/php5.3.27--with-mysql=/application/mysql --with-iconv-dir=/usr/local/libiconv--with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib--with-libxml-dir=/usr --enable-xml --disable-rpath --enable-safe-mode--enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization--with-curl --with-curlwrappers --enable-mbregex --enable-fpm --enable-mbstring--with-mcrypt --with-gd --enable-gd-native-ttf --with-openssl --with-mhash --enable-pcntl--enable-sockets --with-xmlrpc --enable-zip --enable-soap --enable-short-tags--enable-zend-multibyte --enable-static --with-xsl --with-fpm-user=nginx--with-fpm-group=nginx --enable-ftp && make && make install
    - name: Soft connection php5.3.27
      shell: ln -s /application/php5.3 27 /application/php
    -name: copyphp.ini-production
      shell: cp /home/tools/php-5.3.27/php.ini-production/application/php/lib/php.ini
    -name: into/application/php/etc/
      shell: cp /application/php/etc/php-fpm.conf.default/application/php/etc/php-fpm.conf
    -name: into/home/tools/php-5.3.27
      shell: cp/home/tools/php-5.3.27/sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm
    -name: Add executeauthority
      shell: chmod +x /etc/init.d/php-fpm
    -name: startphp-fpm
      shell: /etc/init.d/php-fpm start
时间: 2024-10-21 22:37:00

ansible批量一键安装lnmp环境的相关文章

Shell脚本一键安装LNMP环境

https://sourceforge.net/projects/opensourcefile/files/ Nginx是一款高性能的HTTP和反向代理服务器.Nginx在反向代理,Rewrite规则,稳定性,静态文件处理,内存消耗等方面表现了很强的优势.因此公司线上和测试环境的WEB服务大多数采用的是LNMP环境,经常要进行LNMP环境的搭建,下面是用SHELL脚本写的一键安装LNMP环境的脚本.1)系统环境介绍Centos 5.8 64位 (已测试)Nginx: nginx-1.4.1.ta

运维自动化之ansible playbook安装lnmp环境

之前介绍了使用ansible playbok安装zabbix客户端.mysql服务端.nginx,现在介绍一下安装lnmp环境. 下面是安装nginx的信息: nginx_user: www                        nginx用户 nginx_port: 80                         nginx监听端口 nginx_web_dir: /data/webroot/nginx     nginx的目录 nginx_version: 1.4.3      

LNMP1.3一键安装Linux环境,配置Nginx运行ThinkPHP3.2

LNMP1.3一键安装Linux环境,配置Nginx运行ThinkPHP3.2 你是否遇见过:安装LNMP1.3环境后,运行ThinkPHP 3.2,只能打开首页,不能访问控制器,报404错误. 按照以下3步设置,即可解决. ThinkPHP支持的URL模式有四种:普通模式.PATHINFO.REWRITE和兼容模式,系统默认的PATHINFO模式. LNMP1.3 一键安装完成后,默认支持REWRITE,需要手动开启 PATHINFO. 第1步修改:php.ini文件位置:/usr/local

vagrant 下安装lnmp 环境

今天使用 vagrant 安装了 lnmp 包,感觉还是不错的,值得纪录一下 首先呢,我安装了一个 centos65 ,具体的命令是这样的(box 在本地) vagrant box add centos65 /Users/zeopean/Downloads/mac/centos65-x86_64-20140116.box 接下来,我的vagrant 就装好了,需要初始化 vagrant init centos65 vagrant up 需要注意的是,有可能现在呢的 Vagrantfile 文件中

一键安装lnmp后添加php扩展问题

       因为要使用php的pcntl扩展多进程函数,所以需要添加php的pcntl的函数.但是本机linux环境使用的是lnmp.org的一键安装包,查看ext里面的文件后,没有发现有pcntl的文件包. 解决办法:        在网上下载对应版本的php,然后在linux下解压,解压后找到pcntl的文件包,然后将其mv到本机linux的文件包中.         依照方法:         1,cd 到php的ext/pcntl目录         2,phpize        

CentOS编译安装LNMP环境

这里是教大家如何在centos下利用源码编译安装LNMP环境. 工具/原料 centos服务器一台 自用电脑一台 准备篇 配置好IP.DNS .网关,确保使用远程连接工具能够连接服务器 配置防火墙,开启80端口.3306端口 vi /etc/sysconfig/iptables   #编辑防火墙配置文件 -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT(允许80端口通过防火墙) -A INPUT -m state -

cenos6.5源码包安装lnmp环境

虽然centos6可以用yum安装nginx,但是我还是写个教程用源码包安装用于线上环境. 一:在nginx官网下载nginx,并安装 我下载的是nginx-1.6.0 #./configure --prefix=/usr/local/nginx make&& make install 卸载已存在的apache服务和php [[email protected] Desktop]# yum remove httpd php* 安装development Tools [[email prote

centos下编译安装LNMP环境

自PHP-5.3.3起,PHP-FPM加入到了PHP核心,编译时加上--enable-fpm即可提供支持. PHP-FPM以守护进程在后台运行,Nginx响应请求后,自行处理静态请求,PHP请求则经过fastcgi_pass交由PHP-FPM处理,处理完毕后返回. Nginx和PHP-FPM的组合,是一种稳定.高效的PHP运行方式,效率要比传统的Apache和mod_php高出不少. 二.依赖环境 yum -y install gcc gcc-c++ make cmake automake au

CentOS安装LNMP环境的基础组件

注:以下所有操作均在CentOS 6.5 x86_64位系统下完成. 在安装LNMP环境之前,请确保已经使用yum安装了以下各类基础组件(如果系统已自带,还可以考虑yum update下基础组件): gcc cmake openssl+openssl-devel pcre+pcre-devel bzip2+bzip2-devel libcurl+curl+curl-devel libjpeg+libjpeg-devel libpng+libpng-devel freetype+freetype-