This file contains 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
{ | |
"public_identifier":"arup-chowdhary-3b62825", | |
"profile_pic_url":"https://s3.us-west-000.backblazeb2.com/proxycurl/person/arup-chowdhary-3b62825/profile?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=0004d7f56a0400b0000000001%2F20241011%2Fus-west-000%2Fs3%2Faws4_request&X-Amz-Date=20241011T013030Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=1a703e16f6c2d0143992e765a9d1b2f4628daaa95b0dc398b3c1dcaac12cc72b", | |
"background_cover_image_url":null, | |
"first_name":"Arup", | |
"last_name":"Chowdhary", | |
"full_name":"Arup Chowdhary", | |
"follower_count":533, | |
"occupation":"Senior Manager / Enterprise Architect - Technology Consulting Group at Cognizant Technology Solutions", | |
"headline":"Senior Manager / Enterprise Architect - Technology Consulting Group at Cognizant Technology Solutions", |
This file contains 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
#Download elastic | |
cd /tmp | |
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.0.2.rpm | |
rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch | |
#install | |
rpm -ivh elasticsearch-5.0.2.rpm | |
#configure and test | |
systemctl daemon-reload |
This file contains 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
#Download Java | |
wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/8u121-b13/e9e7ea248e2c4826b92b3f075a80e441/jdk-8u121-linux-x64.tar.gz" | |
sudo mv jdk-8u121-linux-x64.tar.gz /opt/ | |
sudo tar xvfz jdk-8u121-linux-x64.tar.gz | |
#Setup alternatives | |
cd /opt/jdk1.8.0_121/ | |
alternatives --install /usr/bin/java java /opt/jdk1.8.0_121/bin/java 2 | |
alternatives --config java | |
#select the right option |
This file contains 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
## Download splunk linux add on - https://splunkbase.splunk.com/app/833/ | |
# Unzip in any temporary directory | |
tar xfzf splunk-add-on-for-unix-and-linux_521.tgz | |
# Move the add on to the forwarder apps directory | |
sudo mv Splunk_TA_nix $SPLUNK_HOME/etc/apps/ | |
# Enable the app | |
cd $SPLUNK_HOME/etc/apps/Splunk_TA_nix | |
mkdir local |
This file contains 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
## Download the splunk universal forwarder | |
# Would probably need to login to splunk first. | |
wget -O splunkforwarder-6.3.3-f44afce176d0-linux-2.6-amd64.deb 'https://www.splunk.com/bin/splunk/DownloadActivityServlet?architecture=x86_64&platform=linux&version=6.3.3&product=universalforwarder&filename=splunkforwarder-6.3.3-f44afce176d0-linux-2.6-amd64.deb&wget=true' | |
## install | |
# It gets installed in /opt/splunkforwarder | |
sudo dpkg -i splunkforwarder-6.3.3-f44afce176d0-linux-2.6-amd64.deb | |
## add the entry to init.d |
This file contains 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
# Pre-requisites | |
## Install Java | |
sudo add-apt-repository ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get install oracle-java8-installer | |
### Point to right JDK | |
sudo udpate-alternatives --config java |
This file contains 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
#Install Java | |
sudo add-apt-repository ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get install oracle-java8-installer | |
#Point to right JDK | |
sudo udpate-alternatives --config java |
This file contains 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
#Install Scala | |
wget www.scala-lang.org/files/archive/scala-2.11.7.deb | |
sudo dpkg -i scala-2.11.7.deb | |
#test scala | |
scala -version | |
#install sbt | |
echo "deb https://dl.bintray.com/sbt/debian /" | sudo tee -a /etc/apt/sources.list.d/sbt.list | |
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 642AC823 |