部署Discuz X3.2 支援memcached緩衝

來源:互聯網
上載者:User

標籤:local   mysql   

test2:10.13.106.31(mysql、memcache)

disucz:10.13.106.14(nginx、php)


1、安裝mysql

yum install -y autoconf automake imake libxml2-devel expat-devel cmake gcc gcc-c++ libaio libaio-devel bzr bison libtool ncurses5-develgroupadd -r mysqluseradd -r -g mysql mysqltar zxf mysql-5.6.26-linux-glibc2.5-x86_64.tar.gz -C /usr/local/cd /usr/local/ln -s mysql-5.6.26-linux-glibc2.5-x86_64/ mysqlmkdir /mysqldatachown -R mysql.mysql /mysqldata/cd mysqlchown -R root.mysql ./*scripts/mysql_install_db --user=mysql --datadir=/mysqldata/cp support-files/mysql.server /etc/init.d/mysqldchkconfig --add mysqldvim /etc/profile.d/mysql.sh    export PATH=$PATH:/usr/local/mysql/bin. /etc/profile.d/mysql.sh service mysqld startvim my.cnf     datadir = /mysqldata    socket = /tmp/mysql.sockservice mysqld startmysql_secure_installationmysql -u root -pmysql>grant all on *.* to [email protected]‘10.13.106.%‘ identified by ‘redhat‘;mysql>flush privileges;


2、安裝memcache

#安裝libeventcd /tmp  tar zxvf /software/libevent-2.0.22-stable.tar.gz -C /tmp cd libevent-2.0.22-stable  ./configure --prefix=/usr/localmakemake install#安裝memcachedcd /tmp   tar zxvf /software/memcached-1.4.28.tar.gz -C /tmp/cd memcached-1.4.28  ./configure --with-libevent=/usr/local makemake install  memcached -d -m 10 -u root -l 0.0.0.0 -p 11211 -c 256 -P /tmp/memcached.pid


3、安裝nginx

cd /tmptar zxvf /software/nginx-1.8.0.tar.gz -C /tmpcd nginx-1.8.0yum install -y pcre pcre-devel openssl openssl-devel ./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-http_spdy_module --with-http_stub_status_module --with-pcremake make install vim /etc/init.d/nginx#!/bin/sh## nginx - this script starts and stops the nginx daemon## chkconfig:   - 85 15# description: Nginx is an HTTP(S) server, HTTP(S) reverse #               proxy and IMAP/POP3 proxy server# processname: nginx# config:      /etc/nginx/nginx.conf# config:      /etc/sysconfig/nginx# pidfile:     /var/run/nginx.pid# Source function library.. /etc/rc.d/init.d/functions# Source networking configuration.. /etc/sysconfig/network# Check that networking is up.[ "$NETWORKING" = "no" ] && exit 0nginx="/usr/local/nginx/sbin/nginx"prog=$(basename $nginx)NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf"[ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginxlockfile=/var/lock/subsys/nginxstart() {    [ -x $nginx ] || exit 5    [ -f $NGINX_CONF_FILE ] || exit 6    echo -n $"Starting $prog: "    daemon $nginx -c $NGINX_CONF_FILE    retval=$?    echo    [ $retval -eq 0 ] && touch $lockfile    return $retval}stop() {    echo -n $"Stopping $prog: "    killproc $prog -QUIT    retval=$?    echo    [ $retval -eq 0 ] && rm -f $lockfile    return $retvalkillall -9 nginx}restart() {    configtest || return $?    stop    sleep 1    start}reload() {    configtest || return $?    echo -n $"Reloading $prog: "    killproc $nginx -HUPRETVAL=$?    echo}force_reload() {    restart}configtest() {$nginx -t -c $NGINX_CONF_FILE}rh_status() {    status $prog}rh_status_q() {    rh_status >/dev/null 2>&1}case "$1" in    start)        rh_status_q && exit 0    $1        ;;    stop)        rh_status_q || exit 0        $1        ;;    restart|configtest)        $1        ;;    reload)        rh_status_q || exit 7        $1        ;;    force-reload)        force_reload        ;;    status)        rh_status        ;;    condrestart|try-restart)        rh_status_q || exit 0            ;;    *)          echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"        exit 2esac            chmod +x /etc/init.d/nginxchkconfig --add nginxchkconfig nginx onservice nginx start


4、安裝php

tar zxvf /software/php-5.6.0.tar.gz -C /tmp/cd php-5.6.0yum install -y libxml2 libxml2-devel bzip2 bzip2-devel curl* curl-devel libjpeg\* openjpeg\* \*png\* freetype\*./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --with-bz2 --with-curl --enable-ftp --enable-sockets --disable-ipv6 --with-gd --with-jpeg-dir=/usr/local --with-png-dir=/usr/local --with-freetype-dir=/usr/local --enable-gd-native-ttf --with-iconv-dir=/usr/local --enable-mbstring --enable-calendar --with-gettext --with-libxml-dir=/usr/local --with-zlib --with-pdo-mysql=mysqlnd --with-mysqli=mysqlnd --with-mysql=mysqlnd --enable-dom --enable-xml --enable-fpm --with-libdir=lib64 --enable-bcmathmakemake installcp php.ini-production /usr/local/php/etc/php.inicp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.confcp sapi/fpm/init.d.php-fpm /etc/init.d/php-fpmchkconfig --add php-fpmchkconfig php-fpm onchmod +x /etc/init.d/php-fpm service php-fpm startvim /usr/local/nginx/conf/nginx.conf    server {        listen       80;        server_name  discuz.huhaiqing.com;        index index.php index.html index.html;        root /discuz/upload;        location / {                try_files $uri $uri/ /index.php?$args;        }        location ~ .*\.(php)?$  {                expires -1s;                try_files $uri =404;                fastcgi_split_path_info ^(.+\.php)(/.+)$;                include fastcgi_params;                fastcgi_param PATH_INFO $fastcgi_path_info;                fastcgi_index index.php;                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;                fastcgi_pass 127.0.0.1:9000;        }        error_page   500 502 503 504  /50x.html;        location = /50x.html {            root   html;        }    }


5、安裝php擴充

cd /tmptar zxvf /software/memcache-3.0.8.tgz -C /tmpcd memcache-3.0.8  /usr/local/php/bin/phpize  ./configure --enable-memcache --with-php-config=/usr/local/php/bin/php-config --with-zlib-dir  makemake installvim /usr/local/php/etc/php.iniextension_dir = "/usr/local/php/lib/php/extensions/no-debug-non-zts-20131226/"extension=memcache.so [Memcache] memcache.allow_failover = 1 memcache.max_failover_attempts=20 memcache.chunk_size =8192


6、發布discuz

#解壓目錄unzip /software/Discuz_X3.2_SC_UTF8.zip -d /discuz/chmod -R 777 /discuz/#開啟memcache支援vim /discuz/upload/config/config_global.php $_config[‘memory‘][‘memcache‘][‘server‘] = ‘10.13.106.31‘;$_config[‘memory‘][‘memcache‘][‘port‘] = 11211;$_config[‘memory‘][‘memcache‘][‘pconnect‘] = 1;$_config[‘memory‘][‘memcache‘][‘timeout‘] = 1;

7、查看memcached狀態

yum install -y telnettelnet 10.13.106.31 11211statsSTAT cmd_get 199STAT cmd_set 37STAT cmd_flush 0STAT cmd_touch 0STAT get_hits 167STAT get_misses 32

參考博文:http://blog.csdn.net/hel12he/article/details/45537059


部署Discuz X3.2 支援memcached緩衝

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.