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 characters
# This script install Apache Maven 3.5.2 in Ubuntu 16.04 | |
# Author Mansur Ul Hasan | |
# [email protected] | |
CleanUp () { | |
# Removing Source Code | |
rm -f apache-maven-3.5.2-bin.tar.gz | |
} |
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 characters
#!/bin/bash | |
# This script install Redis 4 in RHEL7 / Ubuntu | |
# This installation is done from source code. | |
# Author : Mansur Ul Hasan | |
# Email : [email protected] | |
# Main Function | |
InstallR () { | |
cd /usr/local/redis | |
make distclean |
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 characters
#!/bin/bash | |
# This script install Redis 4 in RHEL7 / Ubuntu | |
# This installation is done from source code. | |
# Author : Mansur Ul Hasan | |
# Email : [email protected] | |
# | |
apt-get update -y | |
apt-get install libssl1.0.0 libssl-dev -y | |
mkdir -p /usr/local/mongo/ |
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 characters
# This script install Apache Maven 3.5.2 in Ubuntu 16.04 | |
# Author Mansur Ul Hasan | |
# [email protected] | |
DownloadVersion () { | |
case $1 in | |
setup_2-3-11) | |
wget -O neo4j-community-2.3.11-unix.tar.gz https://www.dropbox.com/s/uz2kb0kz1b4vwz6/neo4j-community-2.3.11-unix.tar.gz?dl=0 | |
mv `pwd`/neo4j-community-2.3.11-unix.tar.gz /usr/local/ |
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 characters
# |
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 characters
#!/bin/bash | |
# This script Mysql 5.7 from RPM Builder | |
# Author Mansur Ul Hasan | |
# [email protected] | |
Prepass () { | |
echo "Preparing Environement ....." | |
yum groupinstall "Development Tools" | |
yum install ncurses-dev libaio perl-DBI |
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 characters
#!/bin/bash | |
# This script used to install Mysql 5.7 | |
# from source Code | |
# Author Mansur Ul Hasan | |
# [email protected] | |
# Environment Function | |
PrepBuildEnvFunc () { | |
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 characters
#This COnfiguraion is written by Mansur ul Hasan | |
# The MySQL Server 5.7 configuration file. | |
# | |
# One can use all long options that the program supports. | |
# Run program with --help to get a list of available options and with | |
# --print-defaults to see which it would actually understand and use. | |
# | |
# For explanations see | |
# http://dev.mysql.com/doc/mysql/en/server-system-variables.html |
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 characters
#!/bin/bash | |
# This script is designed to installation apache | |
# from source code with all options using apr & | |
# apr-utils and library for portability | |
# Author : Mansur Ul Hasan | |
# EMail : [email protected] | |
# Skype : genious840 | |
# Facebook : https://www.facebook.com/itmarkaz | |
# YouTube : https://www.youtube.com/user/mansur7820 |
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 characters
#!/bin/bash | |
# This script is designed to install | |
# the SSH terminal logging | |
# currently this script is only work on | |
# CentOS & Ubuntu | |
# Author : Mansur Ul Hasan | |
# EMail : [email protected] | |
# Skype : genious840 | |
# Facebook : https://www.facebook.com/itmarkaz | |
# YouTube : https://www.youtube.com/user/mansur7820 |