• Ceph分布式存储集群在CentOS 7.1上手动安装部署指南

    日期:

    Ceph分布式存储集群在CentOS 7.1上手动安装部署指南 集群配置方案 安装配置OS OSD硬盘分区 安装ceph 部署MON节点 部署OSD节点 扩展MON节点 1. 集群配置方案 1.1 MON服务器 按ceph MON服务器奇数数量要求,部署3台MON 服务器: mon1, public network: 192.168...

  • Calamari 在Centos7.1上部署成功案例分享

    日期:

    第一部分:部署环境说明 主机名 IP 角色 服务器版本calamari 192.168.240.200 Calamari Server CentOS 7.1.1503bgw-os-node151 192.168.216.151 Ceph mon/osd/mds, salt-minion Redhat 6.5bgw-os-node152 192.168.216.152 Ceph mon/osd/mds, salt-minion Red...

  • centos 7 下安装php-sqlite

    日期:

    在centos 7运行一个项目,老是报下面错: Fatalerror:ClassSQLite3notfoundin/var/www/request/user.phponline20 虽然网上有很多通过编译源代码的解决方案,但是想通过yum本身来解决。 后来发现用 yuminstallphp-pdo 就可以解决了...

  • centos 永久禁止PackageKit后台运行

    日期:

    使用centos时,使用yum安装软件,老是会遇到这种提示: Existinglock/var/run/yum.pid:anothercopyisrunningaspid3053. Anotherappiscurrentlyholdingtheyumlock;waitingforittoexit... Theotherapplicationis:PackageKit Memory:37MRSS(82MBVSZ) Started:Su...

  • How do you install Node.JS on CentOS?

    日期:

    su - yum install gcc-c++ openssl-develcd /usr/local/srcwget http://nodejs.org/dist/node-latest.tar.gztar zxvf node-latest.tar.gz(cd into extracted folder: ex cd node-v0.10.3)./configuremakemake install To create an RPM package, you can use...

  • 在CentOS 6.5上安装NodeJS

    日期:

    CentOS的软件源未包含有最新的nodejs, 需要手动编译安装。 首先安装依赖的库与工具 yuminstalllibtoolautomakeautoconfgcc-c++openssl-devel 然后下载nodejs的源码包tar, 解压缩后直接三板斧编译安装 ./configure--prefix=/usr make makeinstall 最后用 node...

  • CentOS 6下安装nodejs 0.9.0

    日期:

    确保安装了python,大部分安装失败都是由于python版本过低导致。安装之前,升级python版本,升级步骤http://www.tomtalk.net/wiki/Python。 [root@SNDA-192-168-15-161 ~]# python -V Python 2.7.3 开始安装: 1).下载nodejs到本地并解压缩 [root@SNDA-192-1...

  • centos nodejs

    日期:

    # cat /etc/redhat-release CentOS release 6.2 (Final) # wget http://nodejs.tchol.org/repocfg/el/nodejs-stable-release.noarch.rpm Saving to: nodejs-stable-release.noarch.rpm # rpm -qlp nodejs-stable-release.noarch.rpm /etc/pki/rpm-gpg/RPM-GPG...

  • centos 7 安装Google earth

    日期:

    采用配置源方式,错误,未能安装。 然后下载rpm安装包进行安装。 包地址: https://dl.google.com/dl/earth/client/current/google-earth-stable_current_x86_64.rpm 迅雷下载即可。 ------------------------------------- [zzh@localhost source]$sudo yum...

  • CentOS 6.7安装Kafka 0.10.1

    日期:

    master [root@master ~]# wget http://apache.fayea.com/kafka/0.10.1.0/kafka_2.10-0.10.1.0.tgz[root@master ~]# tar -zxvf kafka_2.10-0.10.1.0.tgz[root@master ~]# mv kafka_2.10-0.10.1.0 /usr/local/ [root@master ~]# vi /usr/local/kafka_2.10-0.10...