Last active
April 15, 2019 10:20
-
-
Save indykish/b59d191d8ccdd1168f78 to your computer and use it in GitHub Desktop.
Archlinux riak systemd service with ulimit fix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Checkout for a free launch at, https://www.megam.io | |
[Unit] | |
Description=Distributed key/value store from Basho Technologies | |
After=network.target | |
[Service] | |
LimitNOFILE=infinity | |
LimitMEMLOCK=infinity | |
User=riak | |
Type=forking | |
ExecStart=/opt/riak/bin/riak start | |
ExecStop=/opt/riak/bin/riak stop | |
[Install] | |
WantedBy=multi-user.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment