1小时教你快速搭建蓝鲸CMDB运行平台

编译CMDB源码

第一步:准备编译环境和下载源码

  • golang >= 1.8 采用:go version查看

  • python >= 2.7.5 采用:python --version命令查看

  • nodejs >= 4.0.0 采用:node -v命令查看 npm -v cnpm -v bower -v

  • 源码地址:https://github.com/Tencent/bk-cmdb

第二步:编译源码

  1.    修改项目的名字为configcenter
  2.    进入configcenter/src目录下执行:make NPM=cnpm
  3.    可选择打包:make package
  4.    生成编译后文件路径:.../configcenter/src/bin/build/

要点:

  1.  Nodejs要装完整和配置正确(具体安装方法如下)
  2. 要修改克隆后的项目名字

 

部署运行环境

第一步:需要准备的软件版本清单版本

  1.  mongodb-linux-x86_64-rhel70-2.8.0-rc5.tgz(CSDN资源可找到
  2. node-v10.15.0-linux-x64.tar.xz(CSDN资源可找到
  3. redis-3.2.11.tar.gz(CSDN资源可找到
  4. zookeeper-3.4.11.tar.gz(CSDN资源可找到
  5. 编译好的CMDB源码
  6. CentOS Linux release 7.0以上的系统

第二步:安装软件

     Nodejs安装配置方法

       sudo ln -s /opt/node-v0.12.10-linux-x86/bin/node /usr/local/bin/node
       sudo ln -s /opt/node-v0.12.10-linux-x86/bin/npm /usr/local/bin/npm 

  1.  解压缩 tar -zxvf node-v4.0.0-linux-x64.tar.gz移动至目标主机相关目录
  2. cd ../bin   ./node -v  ./npm -v 测试是否成功

  3. 用软连接进行连接

  4. 安装cnpm和bower

       npm install -g cnpm --registry=https://registry.npm.taobao.org
       sudo ln -s /usr/local/node/bin/cnpm /usr/local/bin/

       npm install bower -g
       sudo ln -s /usr/local/node/bin/bower /usr/local/bin/

    5.测试方法

       npm -v    cnpm -v    bower -v

    Mongodb 安装配置方法

  1. tar -zvxf xxx 移动目录mongodb
  2. 在mongodb目录中创建文件夹:mkdir db logs
  3. 进入到bin目录下,编辑mongodb.conf文件,内容如下:
dbpath = /usr/local/mongodb/db
logpath = /usr/local/mongodb/logs/mongodb.log
port = 27017
fork = true
nohttpinterface = true
auth=true
bind_ip=0.0.0.0
nojournal=true

     4.启动/停止 mongodb 服务:

       在bin下执行启动:mongod -f mongodb.conf

        在bin下执行停止:mongod -f ./mongodb.conf --shutdown

        输出结果如下:代表成功

warning: bind_ip of 0.0.0.0 is unnecessary; listens on all ips by default
about to fork child process, waiting until server is ready for connections.
forked process: 2428
child process started successfully, parent exiting

      5.配置系统变量(事例:)

vi /etc/profile
export MONGODB_HOME=/usr/local/mongodb
export PATH=$PATH:$MONGODB_HOME/bin
$source /etc/profile

  要点:

  1.  关机一定要停止mongod ,不然会报错“ERROR: child process failed, exited with error number 100 ”
  2. 出现上述错误解决办法为:删除db/mongod.lock mongod.lock 文件,重新启动mongo
  3. 在启动CMDB的时候要先确认mongodb是否启动,命令: ps -ef | grep mongod

Redis 安装配置方法       

         protected-mode yes 改为protected-mode no daemonize设置为yes

  1. tar -xzcf redis-3.0.0.tar.gz 移动目录至目标机
  2. 进入目录执行:make 进入src目录 执行 make install
  3. 修改src下面的redis.conf
  4. 添加软连接

         ln -s /usr/local/redis/src/redis-server /usr/bin/redis-server  

         ln -s /usr/local/redis/src/redis-cli /usr/bin/redis-cli  

     5.启动/停止Redis

        启动:redis-server /usr/local/redis/redis.conf

        停止:redis-cli shutdown  

     6.设置密码

  • 进入命令行:redis-cli  
  • 验证是否设置了密码:config get requirepass
  • 打开redis.conf,并修改# requirepass foobared为requirepass 123456
  • 停止并重新启动redis,验证:auth 123456,验证:config get requirepass

Zookeeper 安装配置方法

     先安装JDK

  1. 下载https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html
  2. tar -zvxf jdk-8u191-linux-x64.tar.gz /usr/local/jdk1.8/
  3. 设置环境变量
vi /etc/profile

export JAVA_HOME=/usr/local/jdk1.8/
export CLASSPATH=.:$JAVA_HOME/jre/lib/rt.jar:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
export PATH=$PATH:$JAVA_HOME/bin

source /etc/profile

 部署zookeeper

  1. 解压:tar -zxvf zookeeper-3.4.12.tar.gz
  2. cd  zookeeper-3.4.12   mkdir data logs
  3. 在conf文件中 cp zoo_sample.cfg zoo.cfg
  4. vi zoo.cfg
#############修改如下#################
# The number of milliseconds of each tick
tickTime=2000
# The number of ticks that the initial 
# synchronization phase can take
initLimit=10
# The number of ticks that can pass between 
# sending a request and getting an acknowledgement
syncLimit=5
# the directory where the snapshot is stored.
# do not use /tmp for storage, /tmp here is just 
# example sakes.
dataDir=/usr/local/zookeeper/data
dataLogDir=/usr/local/zookeeper/logs
# the port at which the clients will connect
clientPort=2181
# the maximum number of client connections.
# increase this if you need to handle more clients
#maxClientCnxns=60
server.1=192.168.40.41:2888:3888

    5.设置环境变量sudo vi /etc/profile 并source /etc/profile

ZOOKEEPER_HOME=/usr/local/zookeeper
export PATH=$ZOOKEEPER_HOME/bin:$PATH

    6.关闭防火墙:systemctl stop firewalld.service

    7. 安装好了,切换到bin目录,启动

  • 启动 zkServer.sh start
  • 输入jps命令查看进程 ​ jps
  • 查看状态: ​ zkServer.sh status
  • #服务器输出信息 ​ tail -500f zookeeper.out
  • 停止zookeeper进程 ​ ./zkServer.sh stop

要点:

    启动客户端脚本:zkCli.sh -server 127.0.0.1:2181  

 

第三步:部署源码(事例)

1 python init.py
2 python init.py --discovery 127.0.0.1:2181 --database cmdb --redis_ip 127.0.0.1 --redis_port 6379 --redis_pass 123456 --mongo_ip 127.0.0.1 --mongo_port 27017 --mongo_user cc --mongo_pass cc --blueking_cmdb_url http://127.0.0.1:8083 --listen_port 8083
3 ./start.sh
4 bash ./init_db.sh
5 http://192.168.5.56:8083
6 ./stop.sh

整个操作要点:

  1. Init时注意Redis的密码
  2. 注意mongo是否启动
  3. 防火墙一定要处于关闭的状态
  4. 关闭虚拟机要关闭mongod -f ./mongodb.conf --shutdown
  5. CMDB源码克隆和download里面内容会有功能差异
  6. 建议zk、redis、mongo 最好设置开机启动、这里就不在赘述

 

你可能感兴趣的:(Go开发)