Last active
December 27, 2015 13:19
-
-
Save sujaybhowmick/7332002 to your computer and use it in GitHub Desktop.
Revisions
-
sujaybhowmick renamed this gist
Oct 14, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
sujaybhowmick revised this gist
Jan 20, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -15,4 +15,4 @@ ncat - Concatenate and redirect sockets Count number of files in a directory --------------------------------------------------- $ls -l <dir> | wc -l -
sujaybhowmick renamed this gist
Jan 20, 2014 . 1 changed file with 5 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -11,4 +11,8 @@ prompt$ echo ruok | nc localhost 8080 should return to prompt successfully. If the service is not up it will return connection refused. *** Read more on nc a.k.a. ncat utility *** ncat - Concatenate and redirect sockets Count number of files in a directory --------------------------------------------------- $ls -1 <dir> | wc -l -
sujaybhowmick revised this gist
Nov 6, 2013 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,9 +1,10 @@ Quick way to check Service status ----------------------------------------------------------------------------------------------------- prompt$ echo ruok | nc <hostname> <port> ** Example on a linux machine(for windows install http://sourceforge.net/projects/nmap-ncat/) prompt$ echo ruok | nc localhost 8080 -
sujaybhowmick revised this gist
Nov 6, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -3,7 +3,7 @@ Quick way to check Service status prompt$ echo ruok | nc <hostname> <port> ** Example on a linux machine (for windows install ncat utility http://sourceforge.net/projects/nmap-ncat/) prompt$ echo ruok | nc localhost 8080 -
sujaybhowmick revised this gist
Nov 6, 2013 . 1 changed file with 5 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -2,6 +2,11 @@ Quick way to check Service status ---------------------------------------------------------------------------------- prompt$ echo ruok | nc <hostname> <port> ** Example on a linux machine prompt$ echo ruok | nc localhost 8080 should return to prompt successfully. If the service is not up it will return connection refused. *** Read more on nc a.k.a. ncat utility *** -
sujaybhowmick created this gist
Nov 6, 2013 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ Quick way to check Service status ---------------------------------------------------------------------------------- prompt$ echo ruok | nc <hostname> <port> should return to prompt successfully. If the service is not up it will return connection refused. *** Read more on nc a.k.a. ncat utility *** ncat - Concatenate and redirect sockets