Day5-搭建Leanote云笔记本

安装MongoDB

MongoDB是一个基于分布式文件存储的高性能数据库, 介于关系数据库和非关系数据库之间, 它支持的数据结构非常松散是类似于json和bson格式, 因此可以存储比较复杂的数据类型. Leanote云笔记使用MongoDB作为后端数据库.

  • 安装MongoDB:
yum -y install mongodb mongodb-server.x86_64 mariadb-devel.i686
  • 启动MongoDB服务, 并查看运行状态:
systemctl start mongod
systemctl enable mongod
systemctl status mongod

安装Leanote

  • 下载Leanote安装包:
wget https://nchc.dl.sourceforge.net/project/leanote-bin/2.6.1/leanote-linux-amd64-v2.6.1.bin.tar.gz
  • 解压:
tar -zxvf leanote-linux-amd64-v2.6.1.bin.tar.gz
  • 编辑leanote/conf/app.conf, 更改app.secret, 将值更改为任意字符值:
app.secret=abcdef # 如不修改app.secret项的值, 将会有安全隐患
  • 初始化数据库:
mongorestore -h localhost -d leanote --dir /root/leanote/mongodb_backup/leanote_install_data/
  • 启动服务:
nohup bash /root/leanote/bin/run.sh > /root/leanote/run.log 2>&1 &
  • 访问云笔记, 在浏览器中访问http://ipaddress:9000, 默认管理用户为admin, 密码为abc123:
    Day5-搭建Leanote云笔记本

Day5-搭建Leanote云笔记本

上一篇:Win10强势,微软必应搜索广告业务增长21%


下一篇:Day2-搭建Docker环境