搭建Leanote个人云笔记
Background
Leanote是一个在线环境的笔记应用。
可以记Markdown和思维导图
在线备份的话,可以不用担心数据丢失(除非阿里云到期了)
Environment
CentOS 7.7 x86
数据库MongoDB
> yum -y install mongodb mongodb-server.x86_64 mariadb-devel.i686
> systemctl start mongod
> systemctl status mongod # 运行状态
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
> vim leanote/conf/app.conf
# 修改
app.secret = EditHere
# 数据库初始化
> 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 &
[1] 1663
网页访问
账户:admin
密码:abc123
- 写是可以写,但是感觉不好用。而且MongoDB可能会和MySQL冲突。