码迷,mamicode.com
首页 > 数据库 > 详细

数据库安装

时间:2017-05-24 00:41:39      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:class   echo   ecs   php.ini   ble   ash   ext   config   bin   

一,mariadb

1,centos安装mariadb
yum list mariadb-server
yum install mariadb-server
rpm -qa|grep mariadb-server
systemctl start mariadb
netstat -tunlp
 
二,mysql,
1,
2,
三,pgsql
1,
2,
四,redis
1,
2,
五,memcached
1,
2,
!/bin/bash

#memcache
if [ ! -f memcache-3.0.6.tgz ];then
        wget http://oss.aliyuncs.com/aliyunecs/onekey/php_extend/memcache-3.0.6.tgz
fi
rm -rf memcache-3.0.6
tar -xzvf memcache-3.0.6.tgz
cd memcache-3.0.6
/alidata/server/php/bin/phpize
./configure --enable-memcache --with-php-config=/alidata/server/php/bin/php-config
CPU_NUM=$(cat /proc/cpuinfo | grep processor | wc -l)
if [ $CPU_NUM -gt 1 ];then
    make -j$CPU_NUM
else
    make
fi
make install
cd ..
echo "extension=memcache.so" >> /alidata/server/php/etc/php.ini

 

数据库安装

标签:class   echo   ecs   php.ini   ble   ash   ext   config   bin   

原文地址:http://www.cnblogs.com/Crius/p/env.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!