zoukankan      html  css  js  c++  java
  • lamp 脚本

    第一个脚本,用作学习规范和学习命(centos6.x):

    #!/bin/bash
    #-----------------------------------
    #description:	install lamp
    #
    #version:	1.0
    #
    #author:	zhuyu
    #
    #-----------------------------------
    
    #prepare
    
    core=`cat /proc/cpuinfo |grep "processor" |wc -l`
    
    yum -y install httpd mysql-server mysql php php-mysql php-gd libjpeg* php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-mcrypt php-bcmath mhash libmcrypt
    
    #-----------------------------------
    #configure httpd
    
    /bin/sed -i 's/ServerTokens OS/ServerTokens Prod/g' /etc/httpd/conf/httpd.conf
    
    /bin/sed -i 's/ServerSignature On/ServerSignature Off/g' /etc/httpd/conf/httpd.conf
    
    /bin/sed -i 's/Options Indexes FollowSymLinks/Options Includes ExecCGI FollowSymLinks/g' /etc/httpd/conf/httpd.conf
    
    /bin/sed -i 's/AddHandler cgi-script .cgi/AddHandler cgi-script .cgi .pl/g' /etc/httpd/conf/httpd.conf
    
    /bin/sed -i 's/AllowOverride None/AllowOverride All/g' /etc/httpd/conf/httpd.conf
    
    /bin/sed -i 's/Options Indexes MultiViews FollowSymLinks/Options MultiViews FollowSymLinks/g' /etc/httpd/conf/httpd.conf
    
    /bin/sed -i 's/DirectoryIndex index.html index.html.var/DirectoryIndex index.html index.html.var index.php/g' /etc/httpd/conf/httpd.conf
    
    /bin/sed -i 's/KeepAlive Off/KeepAlive On/g'  /etc/httpd/conf/httpd.conf
    
    /bin/sed -i 's/MaxKeepAliveRequests 100/MaxKeepAliveRequests 1000/g' /etc/httpd/conf/httpd.conf
    
    
    
    #configure mysqld
    
    /bin/cp -f /usr/share/mysql/my-huge.cnf /etc/my.cnf 
    
    sed -i "s/thread_concurrency = 8/thread_concurrency = `expr 2 * $core`/g" /etc/my.cnf
    
    service mysqld restart 
    
    mysqladmin -u root password 'qwe123'
    
    #configure php
    
    sed -i 's/post_max_size = 8M/post_max_size = 50M/g' /etc/php.ini
    
    sed -i 's/upload_max_filesize = 2M/upload_max_filesize = 50M/g' /etc/php.ini
    
    sed -i 's/;date.timezone =/date.timezone = PRC/g' /etc/php.ini
    
    sed -i 's/;cgi.fix_pathinfo=1/cgi.fix_pathinfo=0/g' /etc/php.ini
    
    sed -i 's/max_execution_time = 30/max_execution_time = 300/g' /etc/php.ini
    
    sed -i 's/disable_functions =.*/disable_functions =passthru,exec,system,chroot,scandir,chgrp,chown,shell_exec,proc_open,proc_get_status,popen,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server/g' /etc/php.ini
    
    rm -rf /etc/httpd/conf.d/welcome.conf
    rm -rf /var/www/error/noindex.html
    
    echo -e "<?php
    phpinfo();
    ?>" >> /var/www/html/index.php
    
    chkconfig httpd on
    chkconfig mysqld on
    service httpd restart
    service mysqld restart
    

      

  • 相关阅读:
    BeanShell实现写入文件
    LoadRunner11录制APP脚本(2)
    LoadRunner11录制APP脚本(1)
    性能测试 研究方向
    JMeter录制脚本方式(二)
    JMeter常用字符串相关函数
    JMeter中BeanShell用法总结(一)
    第二篇:JMeter实现接口/性能自动化(JMeter/Ant/Jenkins)
    第一篇:JMeter实现接口/性能自动化(JMeter/Ant/Jenkins)
    JMeter设置集合点
  • 原文地址:https://www.cnblogs.com/feral/p/6546744.html
Copyright © 2011-2022 走看看