Skip to content

Instantly share code, notes, and snippets.

View toan267's full-sized avatar

Phùng Toàn toan267

View GitHub Profile
@toan267
toan267 / my.cnf
Created April 10, 2020 17:35 — forked from vitobotta/my.cnf
MySQL configuration file for Percona XtraDB Cluster
[client]
port = 3306
socket = /var/run/mysqld/mysqld.sock
[mysqld]
port = 3306
datadir = /var/lib/mysql
socket = /var/run/mysqld/mysqld.sock
max_connections = 500
# Step 1 - install java 1.8
yum install java-1.8.0-openjdk.x86_64
# Step 2 - install jmeter 3.2
curl https://archive.apache.org/dist/jmeter/binaries/apache-jmeter-3.2.tgz > $HOME/apache-jmeter-3.2.tgz
tar -xvzf $HOME/apache-jmeter-3.2.tgz
ln -s $HOME/apache-jmeter-3.2 $HOME/jmeter
# Step 3 - add to your path in ~/.bashrc
export JMETER_HOME=$HOME/jmeter
@toan267
toan267 / awesome-git-setup.sh
Created September 15, 2017 09:07 — forked from clupasq/awesome-git-setup.sh
Awesome git prompt for Linux
# Creates a script that will:
# - customize the prompt to use posh-git-sh
# - add git-completion
DIRECTORY=~/.awesome-git-prompt
SCRIPT=~/git-prompt.sh
if [ ! -d "$DIRECTORY" ]; then
mkdir "$DIRECTORY"
@toan267
toan267 / 1) Install
Created May 9, 2017 09:51 — forked from nghuuphuoc/1) Install
Install Redis on Centos 6
// --- Compiling ---
$ wget http://download.redis.io/releases/redis-2.8.3.tar.gz
$ tar xzvf redis-2.8.3.tar.gz
$ cd redis-2.8.3
$ make
$ make install
// --- or using yum ---
$ rpm -Uvh http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
$ rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
@toan267
toan267 / 0_reuse_code.js
Created May 9, 2017 04:46
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console