搭建个人Leanote云笔记本
在CentOS上安装MongoDB
1.安装MongoDB
yum -y install mongodb mongodb-server.x86_64 mariadb-devel.i686
2.启动MongoDB服务
systemctl start mongod
3.查看MongoDB运行状态
systemctl status mongod
安装Leanote
1.下载Leanote二进制安装包
wget https://nchc.dl.sourceforge.net/project/leanote-bin/2.6.1/leanote-linux-amd64-v2.6.1.bin.tar.gz
2.解压安装包
tar -zxvf leanote-linux-amd64-v2.6.1.bin.tar.gz
3.编辑文件leanote/conf/app.conf
vim leanote/conf/app.conf
进入vim编辑器输入:/app.secret=查找app.secret的位置
修改该项为任意字符串
4.初始化数据库
mongorestore -h localhost -d leanote --dir /root/leanote/mongodb_backup/leanote_install_data/
5.启动服务
nohup bash /root/leanote/bin/run.sh > /root/leanote/run.log 2>&1 &
6.访问云笔记
在浏览器中输入http://公网地址>:9000
默认管理用户为admin,密码为abc123