Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 920 Bytes

binary.md

File metadata and controls

44 lines (33 loc) · 920 Bytes
title description lead date lastmod draft images menu weight toc
Binary install
Deploy nightingale via binary
2020-11-12 13:26:54 +0100
2020-11-12 13:26:54 +0100
false
docs
parent
install
630
true

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.