Skip to content

Instantly share code, notes, and snippets.

@lukewalls
lukewalls / iota.ini
Created September 14, 2017 16:44
IOTA Config
[IRI]
PORT = 14265
UDP_RECEIVER_PORT = 14600
TCP_RECEIVER_PORT = 15600
NEIGHBORS = udp://my.favorite.com:15600
IXI_DIR = ixi
HEADLESS = true
DEBUG = true
DB_PATH = mainnetdb
#REVALIDATE = true
@lukewalls
lukewalls / iota.service
Created September 14, 2017 16:36
IOTA Service
[Unit]
Description=IOTA full node
After=network.target
[Service]
WorkingDirectory=/opt/iota
ExecStart=/usr/bin/java -XX:+DisableAttachMechanism -jar /opt/iota/IRI.jar -c iota.ini
ExecReload=/bin/kill -HUP $MAINPID
KillMode=process
Restart=on-failure