赞
踩
在home 目录,下载源码:
wget http://labs-1253675457.cosgz.myqcloud.com/mongodb-linux-x86_64-3.0.1.tgz
解压缩源码包:
tar -xzvf mongodb-linux-x86_64-3.0.1.tgz
创建用于存储的文件夹目录
mkdir -p /data/db
配置 MongoDB 的环境变量:
编辑 /etc/profile,在末尾追加
export PATH=$PATH:/home/mongodb-linux-x86_64-3.0.1/bin
环境变量生效
source /etc/profile
启动 MongoDB
mongod --bind_ip localhost --port 27017 --dbpath /data/db/ --logpath=/var/log/mongod.log --fork
在home 目录,下载 Leanote 源码
wget http://labs-1253675457.cosgz.myqcloud.com/leanote-linux-amd64-v2.4.bin.tar.gz
解开压缩包:
tar -zxvf leanote-linux-amd64-v2.4.bin.tar.gz
编辑文件 /home/leanote/conf/app.conf,在文件中找到 app.secret= 项,修改为app.secret=qcloud666
初始化数据库
mongorestore -h localhost -d leanote --dir /home/leanote/mongodb_backup/leanote_install_data/
启动 Leanote 服务
nohup /bin/bash /home/leanote/bin/run.sh >> /var/log/leanote.log 2>&1 &
url:http://IP:9000
account:admin
pwd: abc123
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。