Overview The Skinny
Tungsten Clustering provides high availability, disaster
recovery, and a host of other benefits for MySQL / MariaDB /
Percona Server databases. In this blog post we will explore some
of the shell aliases I use every day to administer various
Tungsten Clusters.
Shell Aliases: A Quick Review Quick and Easy
A shell alias is simply a way to create a shortcut for
frequently-used command sequences.
For example, I like to shorten the command clear
to
cls
, i.e.
shell> alias cls=clear
shell> cls
If you create an alias on the fly it will be lost when the shell
exits.
To save aliases so they are available to all shell sessions,
update your shell’s profile or rc script.
For example, add the below line to the bottom of …
[Read more]