<?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: files access in Training + Certification Discussions</title>
    <link>https://community.splunk.com/t5/Training-Certification/files-access/m-p/747176#M2218</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/310536"&gt;@bsirisha&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The error "command not found" for vim indicates that the vim text editor is either not installed on your Google Cloud instance or is not in the system's PATH for the user you are logged in as. This is a standard Linux operating system issue, not specific to Splunk.&lt;/P&gt;&lt;P&gt;You might find that other tools such as "vi" or "nano" are installed instead of vim, but if you wish to install vim specifically then you might find the following guide helpful:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;STRONG&gt;Check if vim is installed:&lt;/STRONG&gt; Open your terminal and run which vim. If it returns a path (like /usr/bin/vim), it's installed. If not, you'll likely get the "command not found" error again.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Install vim (if not installed):&lt;/STRONG&gt; Use your distribution's package manager. For Debian/Ubuntu-based systems (like many Google Cloud images), use:&lt;PRE&gt;    sudo apt-get update
    sudo apt-get install vim&lt;/PRE&gt;For RHEL/CentOS/Fedora-based systems, use:&lt;PRE&gt;    sudo yum update
    sudo yum install vim&lt;/PRE&gt;You will need sudo privileges to install software.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Locate Splunk configuration files:&lt;/STRONG&gt; Splunk configuration files (.conf files like inputs.conf, outputs.conf, etc.) are located within the Splunk installation directory, typically under $SPLUNK_HOME/etc/. The most common locations for local configurations are:&lt;UL&gt;&lt;LI&gt;$SPLUNK_HOME/etc/system/local/ (for system-wide settings)&lt;/LI&gt;&lt;LI&gt;$SPLUNK_HOME/etc/apps/&amp;lt;app_name&amp;gt;/local/ (for app-specific settings)&lt;/LI&gt;&lt;LI&gt;The default $SPLUNK_HOME is /opt/splunk.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Navigate and edit files:&lt;/STRONG&gt; Once vim is installed and you know the location, navigate to the directory and use sudo vim to edit the file, as configuration files are often owned by the splunk user or root.&lt;/LI&gt;&lt;/OL&gt;&lt;UL&gt;&lt;LI&gt;Always make a backup of configuration files before editing them.&lt;/LI&gt;&lt;LI&gt;After editing Splunk configuration files, you often need to restart Splunk or reload the deployment server/client for changes to take effect.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;For more information on Splunk configuration files and their locations, refer to the Splunk documentation. &lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/Admin/Aboutconfigurationfiles" target="_blank" rel="noopener"&gt;https://docs.splunk.com/Documentation/Splunk/latest/Admin/Aboutconfigurationfiles&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Did this answer help you?&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If so, please consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding karma to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issue&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 29 May 2025 06:58:27 GMT</pubDate>
    <dc:creator>livehybrid</dc:creator>
    <dc:date>2025-05-29T06:58:27Z</dc:date>
    <item>
      <title>files access</title>
      <link>https://community.splunk.com/t5/Training-Certification/files-access/m-p/747175#M2217</link>
      <description>&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;I am new to splunk.&amp;nbsp; I have created instance in google cloud and installed splunk enterprise.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Problem is iam not able to access any files like inputs.config file or outputs.conf.&amp;nbsp; Even if i tried to create file with vim editor, simply am getting error "command not found".&lt;/P&gt;&lt;P&gt;can anyone suggest me best possible solution.&lt;/P&gt;</description>
      <pubDate>Thu, 29 May 2025 06:41:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Training-Certification/files-access/m-p/747175#M2217</guid>
      <dc:creator>bsirisha</dc:creator>
      <dc:date>2025-05-29T06:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: files access</title>
      <link>https://community.splunk.com/t5/Training-Certification/files-access/m-p/747176#M2218</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/310536"&gt;@bsirisha&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The error "command not found" for vim indicates that the vim text editor is either not installed on your Google Cloud instance or is not in the system's PATH for the user you are logged in as. This is a standard Linux operating system issue, not specific to Splunk.&lt;/P&gt;&lt;P&gt;You might find that other tools such as "vi" or "nano" are installed instead of vim, but if you wish to install vim specifically then you might find the following guide helpful:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;STRONG&gt;Check if vim is installed:&lt;/STRONG&gt; Open your terminal and run which vim. If it returns a path (like /usr/bin/vim), it's installed. If not, you'll likely get the "command not found" error again.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Install vim (if not installed):&lt;/STRONG&gt; Use your distribution's package manager. For Debian/Ubuntu-based systems (like many Google Cloud images), use:&lt;PRE&gt;    sudo apt-get update
    sudo apt-get install vim&lt;/PRE&gt;For RHEL/CentOS/Fedora-based systems, use:&lt;PRE&gt;    sudo yum update
    sudo yum install vim&lt;/PRE&gt;You will need sudo privileges to install software.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Locate Splunk configuration files:&lt;/STRONG&gt; Splunk configuration files (.conf files like inputs.conf, outputs.conf, etc.) are located within the Splunk installation directory, typically under $SPLUNK_HOME/etc/. The most common locations for local configurations are:&lt;UL&gt;&lt;LI&gt;$SPLUNK_HOME/etc/system/local/ (for system-wide settings)&lt;/LI&gt;&lt;LI&gt;$SPLUNK_HOME/etc/apps/&amp;lt;app_name&amp;gt;/local/ (for app-specific settings)&lt;/LI&gt;&lt;LI&gt;The default $SPLUNK_HOME is /opt/splunk.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Navigate and edit files:&lt;/STRONG&gt; Once vim is installed and you know the location, navigate to the directory and use sudo vim to edit the file, as configuration files are often owned by the splunk user or root.&lt;/LI&gt;&lt;/OL&gt;&lt;UL&gt;&lt;LI&gt;Always make a backup of configuration files before editing them.&lt;/LI&gt;&lt;LI&gt;After editing Splunk configuration files, you often need to restart Splunk or reload the deployment server/client for changes to take effect.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;For more information on Splunk configuration files and their locations, refer to the Splunk documentation. &lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/Admin/Aboutconfigurationfiles" target="_blank" rel="noopener"&gt;https://docs.splunk.com/Documentation/Splunk/latest/Admin/Aboutconfigurationfiles&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Did this answer help you?&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If so, please consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding karma to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issue&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 May 2025 06:58:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Training-Certification/files-access/m-p/747176#M2218</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-05-29T06:58:27Z</dc:date>
    </item>
    <item>
      <title>Re: files access</title>
      <link>https://community.splunk.com/t5/Training-Certification/files-access/m-p/747178#M2219</link>
      <description>&lt;P&gt;Hi bro,&amp;nbsp;&lt;/P&gt;&lt;P&gt;It was really helpful. Thank for your suggestion. I used these commands:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;sudo apt-get update
sudo apt-get install vim&lt;BR /&gt;&lt;BR /&gt;So Everytime i install wget link for splunk enterprise installation, do i have to update apt-get and apt-get install.&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 May 2025 07:43:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Training-Certification/files-access/m-p/747178#M2219</guid>
      <dc:creator>bsirisha</dc:creator>
      <dc:date>2025-05-29T07:43:49Z</dc:date>
    </item>
    <item>
      <title>Re: files access</title>
      <link>https://community.splunk.com/t5/Training-Certification/files-access/m-p/747253#M2220</link>
      <description>&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;I have created instance in google cloud. I have copied w get link and installed in Splunk enterprise.&amp;nbsp; I am not able to access any files like inputs.conf and outputs.conf file.&lt;/P&gt;&lt;P&gt;when iam trying to open inputs.conf and outputs.conf file with vim editor, its simply saying "command&amp;nbsp; not found".&lt;/P&gt;&lt;P&gt;Yesterday someone suggested to update it with following commands : sudo apt-get upgrade &amp;amp; sudo apt-get install. when i did the same, it worked for that respective instance.&lt;/P&gt;&lt;P&gt;Now when i created other instance, again same problem arises. I am not able to access inputs.conf and outputs.conf file. I tried with "sudo apt-get upgrade and sudo apt-get install. But still its throwing an error "command not found".&lt;/P&gt;&lt;P&gt;Please suggest me possible solutions,&amp;nbsp; and let me know why is it happening everytime&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2025 07:35:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Training-Certification/files-access/m-p/747253#M2220</guid>
      <dc:creator>bsirisha</dc:creator>
      <dc:date>2025-05-30T07:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: files access</title>
      <link>https://community.splunk.com/t5/Training-Certification/files-access/m-p/747314#M2221</link>
      <description>&lt;P&gt;Are you sure you used the full second command of "sudo apt-get install vim"? If so, what messages or errors did it return?&lt;/P&gt;</description>
      <pubDate>Sun, 01 Jun 2025 18:44:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Training-Certification/files-access/m-p/747314#M2221</guid>
      <dc:creator>marnall</dc:creator>
      <dc:date>2025-06-01T18:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: files access</title>
      <link>https://community.splunk.com/t5/Training-Certification/files-access/m-p/747323#M2222</link>
      <description>&lt;P&gt;Yes for 1st instance , i have used command : "sudo apt-get install &amp;amp; sudo apt-get update, it worked.&lt;/P&gt;&lt;P&gt;But for 2nd instance, I have installed splunk with wget link and used commands: "sudo apt-get install and sudo apt-get udate, now its not working. I am not able to access any files.&lt;/P&gt;&lt;P&gt;When iam trying to access inputs.conf and outputs.conf file , it says command not found.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jun 2025 06:20:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Training-Certification/files-access/m-p/747323#M2222</guid>
      <dc:creator>bsirisha</dc:creator>
      <dc:date>2025-06-02T06:20:49Z</dc:date>
    </item>
  </channel>
</rss>

