搜索内容

最新文章
  • MongoDB-副本集
    MongoDB

    MongoDB-副本集

    副本集就是有自动故障恢复功能的主从集群。主从集群和副本集最为明显的区别就是副本集没有固定的主节点:整个集群会选举出一个主节点,当其不能工作时,则变更到其它节点。副本集总会有一个活跃节点和一个或多个备份节点。
    副本集最好的优点就是全自动化的。
    standard:常

    WangGaoli 2017年4月10日
  • MongoDB-主从复制
    MongoDB

    MongoDB-主从复制

    Master-Slave复制(主从)
    关闭iptables,selinux
    MongoDB主从:

    启动MongoDB主从:

    首先在准备好的Slave主机上的家目录中添加如下内容,启用写操作(不提前做这一步骤,数据会同步不了)。

    WangGaoli 2017年4月10日
  • MongoDB基础及安装
    MongoDB

    MongoDB基础及安装

    一. 安装
    1. 下载最新版本
    mongodb版本更新很快。

    # wget 
    WangGaoli 2017年4月10日
  • MySQL5.7.17安装
    MySQL

    MySQL5.7.17安装

    #!/bin/bash
    soft_dir=/opt

    #安装cmake 3.7.2
    cd $soft_dir
    yum -y install ncurses-deve

    WangGaoli 2017年4月5日
  • lnmp-脚本
    Apache

    lnmp-脚本

    #!/bin/bash

    #Script:Nginx_Script.sh

    #Version:Release 1.0

    #Author:766083824@q

    WangGaoli 2017年4月2日
  • Linux下去掉windows文件特殊符号的方法
    Linux命令

    Linux下去掉windows文件特殊符号的方法

    #sed -i ‘s/\r//g’ filename 
    WangGaoli 2017年4月2日