Install Splunk 6.4 on CentOS 6 with non-root user

前端之家收集整理的这篇文章主要介绍了Install Splunk 6.4 on CentOS 6 with non-root user前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1. useradd splunk


2. tar zxf splunk-6.4.0-f2c836328108-Linux-x86_64.tgz -C /opt


3. chown -R splunk:splunk /opt/splunk


4. /opt/splunk/bin/splunk enable boot-start -user splunk (this will create init script for CentOS 6,for CentOS 7 systemd script,check below)


5. reboot and make sure splunk starts up as expected

ss -lnt

ps -ef | grep splunk


Notes: above step is same as Ubuntu 14.04


for CentOS 7 systemd script:

vi /usr/lib/systemd/system/splunk.service

[Unit]
Description=Splunk
After=network.target

[Service]
RemainAfterExit=yes
ExecStart=/opt/splunk/bin/splunk start
ExecStop=/opt/splunk/bin/splunk stop
ExecReload=/opt/splunk/bin/splunk restart
User=splunk
Group=splunk

[Install]
WantedBy=multi-user.target


systemctl enable splunk

原文链接:https://www.f2er.com/centos/382066.html

猜你在找的CentOS相关文章