We recommend using a high memory Linode with this guide.
This guide is written for a non-root user. Commands that require elevated privileges are prefixed withsudo
. If you’re not familiar with thesudo
command, you can check our Users and Groups guide.
Before You Begin
-
Ensure that you have followed the Getting Started and Securing Your Server guides, and the Linode’s hostname is set.
To check your hostname run:
1 2
hostname hostname -f
-
Update your system:
1 2
sudo apt-get update sudo apt-get upgrade
Install MySQL
1 | sudo apt-get install mysql-server |

MySQL will bind to localhost (127.0.0.1) by default. Please reference our MySQL remote access guide for information on connecting to your databases using SSH.
Allowing unrestricted access to MySQL on a public IP is not advised, but you may change the address it listens on by modifying thebind-address
parameter in/etc/my.cnf
. If you decide to bind MySQL to your public IP, you should implement firewall rules that only allow connections from specific IP addresses.
Harden MySQL Server
Run the mysql_secure_installation script to address several security concerns in a default MySQL installation:1 | sudo mysql_secure_installation |
Use MySQL
The standard tool for interacting with MySQL is themysql
client, which installs with the mysql-server
package. The MySQL client is accessed through a terminal.Root Login
-
To log in to MySQL as the root user:
1
mysql -u root -p
-
When prompted, enter the root password you assigned when the
mysql_secure_installation
script was run.
You’ll then be presented with the MySQL monitor prompt:
1 2 3 4 5 6 7
Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 Server version: 5.0.45 Source distribution Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql>
-
To generate a list of commands for the MySQL prompt, enter
\h
. You’ll then see:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
List of all MySQL commands: Note that all text commands must be first on line and end with ';' ? (\?) Synonym for `help'. clear (\c) Clear command. connect (\r) Reconnect to the server. Optional arguments are db and host. delimiter (\d) Set statement delimiter. NOTE: Takes the rest of the line as new delimiter. edit (\e) Edit command with $EDITOR. ego (\G) Send command to mysql server, display result vertically. exit (\q) Exit mysql. Same as quit. go (\g) Send command to mysql server. help (\h) Display this help. nopager (\n) Disable pager, print to stdout. notee (\t) Don't write into outfile. pager (\P) Set PAGER [to_pager]. Print the query results via PAGER. print (\p) Print current command. prompt (\R) Change your mysql prompt. quit (\q) Quit mysql. rehash (\#) Rebuild completion hash. source (\.) Execute an SQL script file. Takes a file name as an argument. status (\s) Get status information from the server. system (\!) Execute a system shell command. tee (\T) Set outfile [to_outfile]. Append everything into given outfile. use (\u) Use another database. Takes database name as argument. charset (\C) Switch to another charset. Might be needed for processing binlog with multi-byte charsets. warnings (\W) Show warnings after every statement. nowarning (\w) Don't show warnings after every statement. For server side help, type 'help contents' mysql>
Create a New MySQL User and Database
-
In the example below,
testdb
is the name of the database,testuser
is the user, andpassword
is the user’s password.
1 2 3
create database testdb; create user 'testuser'@'localhost' identified by 'password'; grant all on testdb.* to 'testuser';
1 2
create database testdb; grant all on testdb.* to 'testuser' identified by 'password';
-
Exit MySQL.
1
exit
Create a Sample Table
-
Log back in as
testuser
.
1
mysql -u testuser -p
-
Create a sample table called
customers
. This creates a table with a customer ID field of the typeINT
for integer (auto-incremented for new records, used as the primary key), as well as two fields for storing the customer’s name.
1 2
use testdb; create table customers (customer_id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, first_name TEXT, last_name TEXT);
-
Then exit MySQL.
1
exit
Reset the MySQL Root Password
If you forget your MySQL root password, it can be reset.-
Stop the current MySQL server instance:
1
sudo service mysql stop
-
Use dpkg to re-run the configuration process that MySQL goes
through on first installation. You will again be asked to set a root
password.
1
sudo dpkg-reconfigure mysql-server-5.5
-
Then start MySQL:
1
sudo service mysql start
mysql -u root -p
.Tune MySQL
MySQL Tuner is a Perl script that connects to a running instance of MySQL and provides configuration recommendations based on workload. Ideally, the MySQL instance should have been operating for at least 24 hours before running the tuner. The longer the instance has been running, the better advice MySQL Tuner will give.-
Install MySQL Tuner from Ubuntu’s repositories:
1
sudo apt-get install mysqltuner
-
To run it:
1
mysqltuner
No comments:
Post a Comment