<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Splunk Installation in CentOS in Installation</title>
    <link>https://community.splunk.com/t5/Installation/Splunk-Installation-in-CentOS/m-p/533009#M6996</link>
    <description>&lt;P&gt;If you're using&amp;nbsp;&lt;A href="https://www.bitsioinc.com/tutorials/install-splunk-centos/" target="_blank"&gt;https://www.bitsioinc.com/tutorials/install-splunk-centos/&lt;/A&gt;&amp;nbsp;to install, they have a typo in the start command.&amp;nbsp; It should be:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;./splunk start --accept-license&lt;/LI-CODE&gt;&lt;P&gt;They've only got 1 hyphen in the accept license, and it's trying to pass just -a to Splunk.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 14 Dec 2020 15:33:16 GMT</pubDate>
    <dc:creator>mhansonwps</dc:creator>
    <dc:date>2020-12-14T15:33:16Z</dc:date>
    <item>
      <title>Splunk Installation in CentOS</title>
      <link>https://community.splunk.com/t5/Installation/Splunk-Installation-in-CentOS/m-p/532232#M6982</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I am new to Splunk and I am unable to complete the installation in CentOS 8.&lt;/P&gt;&lt;P&gt;Error: Unable to start the web interface. (Reference image attached)&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Sujith Thyagaraja&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Splunk Error.jpg" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/12208iD7D4E90199F09FB8/image-size/large?v=v2&amp;amp;px=999" role="button" title="Splunk Error.jpg" alt="Splunk Error.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Dec 2020 18:43:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/Splunk-Installation-in-CentOS/m-p/532232#M6982</guid>
      <dc:creator>nss3009</dc:creator>
      <dc:date>2020-12-07T18:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Installation in CentOS</title>
      <link>https://community.splunk.com/t5/Installation/Splunk-Installation-in-CentOS/m-p/532237#M6983</link>
      <description>&lt;P&gt;Did you try connecting to the web interface?&amp;nbsp; I've had the same message appear in the CLI and was still able to use the GUI.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Dec 2020 19:36:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/Splunk-Installation-in-CentOS/m-p/532237#M6983</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2020-12-07T19:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Installation in CentOS</title>
      <link>https://community.splunk.com/t5/Installation/Splunk-Installation-in-CentOS/m-p/532285#M6984</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;Sorry I can't reproduce the error with the provided informations.&lt;BR /&gt;How do you install Splunk Enterprise? Because the official Packages shouldn't try to start &lt;STRONG&gt;splunkd&lt;/STRONG&gt;&amp;nbsp;with a "bad option".&lt;BR /&gt;From source package the installation runes without any problem. Also when I remove the user-seed.conf part. Tested on vagrant with a Centos 8.2.&amp;nbsp;&lt;BR /&gt;Here the Vagrantfile example… with shell provisioning.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.configure("2") do |config|
  config.vm.define "splunkserver" do |server|
    server.vm.box = "bento/centos-8.2"
    server.vm.box_check_update = false
    server.vm.network "private_network", ip: "192.168.130.182"
    server.vm.provision "shell", inline: &amp;lt;&amp;lt;-SHELL
      hostname "testsplunkserver"
      yum install wget -y
      useradd -m -d /opt/splunk splunk
      wget -O /opt/splunk/$(curl -s https://www.splunk.com/en_us/download/splunk-enterprise.html | grep -o "data-link[^ ]* " | grep "Linux" | sed "s\/data-link=\\"\/\/;s\/\\"\/\/" | sed "s\/.*\\/\/\/") $(curl -s https://www.splunk.com/en_us/download/splunk-enterprise.html | grep -o "data-link[^ ]* " | grep "Linux" | sed "s\/data-link=\\"\/\/;s\/\\"\/\/")
      echo "file=\\$\(ls /opt/splunk/\*.tgz\)
mkdir \\$\{file%.tgz\}
tar xvzf \\$file --strip-components 1 -C \\$\{file%.tgz\}
ln -s \\$\{file%.tgz\} /opt/splunk/current
echo \\"\[user_info\]
USERNAME = admin
PASSWORD = changeme\\" \&amp;gt;\&amp;gt; /opt/splunk/current/etc/system/local/user-seed.conf
echo \\"SPLUNK_WEB_NAME=splunkweb
SPLUNK_HOME=/opt/splunk/current
SPLUNK_SERVER_NAME=Splunkd
SPLUNK_OS_USER=splunk\\" \&amp;gt;\&amp;gt; /opt/splunk/current/etc/splunk-launch.conf
/opt/splunk/current/bin/splunk start --accept-license --answer-yes --no-prompt
rm -f \\$file" &amp;gt;&amp;gt; /opt/splunk/splunk_install.sh
      chown splunk:splunk /opt/splunk/splunk*
      chmod 766 /opt/splunk/splunk_install.sh
      sudo -u splunk /opt/splunk/splunk_install.sh
      echo "# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
    . ~/.bashrc
fi

# User specific environment and startup programs

PATH=\\$PATH:\\$HOME/.local/bin:\\$HOME/bin:\\$HOME/current/bin

export PATH" &amp;gt; /opt/splunk/.bash_profile
/opt/splunk/current/bin/splunk enable boot-start -user splunk
    SHELL
  end

end&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;BR /&gt;Video of a vagrant up without &lt;STRONG&gt;user-seed.conf&lt;/STRONG&gt;&lt;BR /&gt;&lt;A href="https://youtu.be/VO_r8JX4Su0" target="_blank" rel="noopener"&gt;https://youtu.be/VO_r8JX4Su0&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2020 07:53:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/Splunk-Installation-in-CentOS/m-p/532285#M6984</guid>
      <dc:creator>SierraX</dc:creator>
      <dc:date>2020-12-08T07:53:15Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Installation in CentOS</title>
      <link>https://community.splunk.com/t5/Installation/Splunk-Installation-in-CentOS/m-p/533009#M6996</link>
      <description>&lt;P&gt;If you're using&amp;nbsp;&lt;A href="https://www.bitsioinc.com/tutorials/install-splunk-centos/" target="_blank"&gt;https://www.bitsioinc.com/tutorials/install-splunk-centos/&lt;/A&gt;&amp;nbsp;to install, they have a typo in the start command.&amp;nbsp; It should be:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;./splunk start --accept-license&lt;/LI-CODE&gt;&lt;P&gt;They've only got 1 hyphen in the accept license, and it's trying to pass just -a to Splunk.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Dec 2020 15:33:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Installation/Splunk-Installation-in-CentOS/m-p/533009#M6996</guid>
      <dc:creator>mhansonwps</dc:creator>
      <dc:date>2020-12-14T15:33:16Z</dc:date>
    </item>
  </channel>
</rss>

