Skip to content

Instantly share code, notes, and snippets.

View 2arunpmohan's full-sized avatar

ARUN P MOHAN 2arunpmohan

  • Factweavers
  • Cochin
View GitHub Profile
@2arunpmohan
2arunpmohan / devops: how to open a port.md
Last active January 5, 2019 12:28
how to open up a port?

the below command will open up the 9100 port.

sudo iptables -I INPUT -p tcp --dport 9100 -jACCEPT

This wont work with AWS

@2arunpmohan
2arunpmohan / mysql: create and restore sql dump files.md
Last active January 5, 2019 12:32
how to create and restore sql dump files - command line

create dump files

mysqldump -u root -p test_arun > /home/user/Desktop/test_arun_dump.sql

Restore dump files

mysql -u root -p test_arun_restored < test_arun_dump.sql

for this, we need to create the database "test_arun_restored" prior to to the ececution of the command
@2arunpmohan
2arunpmohan / kibana: change the axis values using scripts .md
Last active January 5, 2019 12:33
Kibana JSON input values usage

Kibana Script usage

How to show the data on Y-axis in percentage

Use case example.

What we want to achieve?
Suppose we want to show the usage statistics of a process in Kibana.
The Y axis -  being the usage of the RAM
and the x-axis - the date/time
@2arunpmohan
2arunpmohan / mapping for suggest - 02.sh
Last active January 5, 2019 12:38
bash scripts for "suggest" mapping example of suggest implementation
#!/bin/bash
if [ -z $1 ] ; then
echo "Please enter hostname"
exit
fi
hostname=$1
curl -XDELETE "http://$hostname:9200/suggest-simple"
@2arunpmohan
2arunpmohan / mappings for attachment.sh
Created September 8, 2016 08:38
bash scripts for reference mapping for pdf attachments in elasticsearch
#!/bin/bash
if [ -z $1 ] ; then
echo "Please enter hostname"
exit
fi
hostname=$1
curl -XDELETE "http://$hostname:9175/pdf-attachment-04"
@2arunpmohan
2arunpmohan / new_gist_file_0
Created September 8, 2016 06:59
netstat for information regarding port utilisation
#To know the ports and process utilisations
sudo netstat -ntlp

#ZIP a folder zip -r new-name.zip folderName

@2arunpmohan
2arunpmohan / table operations mysql.md
Created September 8, 2016 06:43
table operations mySql

show the tables inside a database show tables;

create a table create table TableName(columndetails) eg: create table EmployeeDetails (PersonID int, LastName varchar(255), FirstName varchar(255), City varchar(255));

insert data to a table INSERT INTO EmployeeDetails (PersonID, LastName, FirstName, City) VALUES ('4005','Kallis','Jaques','Cape Town');

@2arunpmohan
2arunpmohan / new_gist_file_0
Created September 8, 2016 06:38
database operations mySql
list all databases in database
show databases;
create a database
create databaseName
@2arunpmohan
2arunpmohan / start mySql.md
Created September 8, 2016 06:37
mySql operations

start mysql in ubuntu mysql -u root -p (after entering this, we will be asked password. For office system it is "factweavers")