Skip to content

v7.0.0-beta.2.0.1

Compare
Choose a tag to compare
@github-actions github-actions released this 09 Apr 02:34
· 357 commits to main since this release

What's Changed

  • fix: ldap 登录,用户信息同步报错问题

Install

See Install Docs

迁移 ibex 服务(没使用 ibex 可忽略)

  1. 将 ibex 数据库中的数据,迁移到 n9e 的数据库, ${ibex} 为实际使用的ibex数据库名称, ${n9e_v6} 实际使用的夜莺的数据库名称
mysqldump -u username -p ${ibex} > ibex.sql
mysql -u root -p ${n9e_v6} < ibex.sql
  1. 修改 n9e 配置,启用 ibex 功能,将 enable 设置为 true
[ibex]
Enable = true
RPCListen = "0.0.0.0:20090"

这里需要注意,如果使用了 n9e-edge,n9e-edge 也需要同步开启 n9e-edge,如果之前没有使用 redis,也需要加下 redis 的配置

[ibex]
Enable = true
RPCListen = "0.0.0.0:20090"

[Redis]
Address = "127.0.0.1:6379"
# Password = ""
RedisType = "standalone"
  1. 重新启动 n9e

  2. 检查 n9e 启动端口,如果监听了2个端口 17000 和 20090,表示服务运行正常,已具备故障自愈能力

ss -tlnp|grep n9e
  1. 修改之前 categraf 使用的故障自愈服务端的 ip 和 port,重启 categraf

升级到专业版

  1. 将夜莺升级到 v7 版本
  2. 下载 专业版 安装包,解压安装包,将 n9e-plus 放到 n9e 二进制所在目录
  3. 停掉 n9e 进程,启动 n9e-plus 即可
pkill n9e && nohup ./n9e-plus &> n9e.log &
  1. 如果想从专业版切回开源版,直接停掉 n9e-plus 进程,启动 n9e 即可
pkill n9e-plus && nohup ./n9e &> n9e.log &

专业版详细介绍见 夜莺专业版