Binary install
On this page
Download
Download the latest release from GitHub, then you will get a tarball which name is like n9e-{version}-linux-amd64.tar.gz
Install
#!/bin/bash
mkdir /opt/n9e && tar zxvf n9e-{version}-linux-amd64.tar.gz -C /opt/n9e
cd /opt/n9e
# init database
mysql -uroot -p1234 < n9e.sql
# check configurations in /opt/n9e/etc/config.toml and start n9e
nohup ./n9e &> n9e.log &
Check Process
# check process is runing or not
ss -tlnp|grep 17000
Login
Open web browser and go to http://localhost:17000. The default username is root
and default password is root.2020
.