!!

Register new account or login on the forum!

To have a full access of the forum please create a new account! Click here or login with your account Click here.

Main Plaza > Guides

How to Install MySQL on CentOS 7

(1/2) > >>

Nefer:
CREDITS
https://www.linode.com/docs/databases/mysql/how-to-install-mysql-on-centos-7

Basic guide how to configure/secure/optimize mysql on OS CentOS 7

MySQL is a popular database management system used for web and server applications. However, MySQL is no longer in CentOS’s repositories and MariaDB has become the default database system offered. MariaDB is considered a drop-in replacement for MySQL and would be sufficient if you just need a database system in general. See our MariaDB in CentOS 7 guide for installation instructions.
If you nonetheless prefer MySQL, this guide will introduce how to install, configure and manage it on a Linode running CentOS 7.
Large MySQL databases can require a considerable amount of memory. For this reason, we recommend using a high memory Linode for such setups.
 
This guide is written for a non-root user. Commands that require elevated privileges are prefixed with sudo. If you’re not familiar with the sudo 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:

--- Code: ---hostname
hostname -f
--- End code ---
The first command should show your short hostname, and the second should show your fully qualified domain name (FQDN).
Update your system:

--- Code: ---sudo yum update
--- End code ---
Install MySQL
MySQL must be installed from the community repository.
Download and add the repository, then update.

--- Code: ---wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm
sudo rpm -ivh mysql-community-release-el7-5.noarch.rpm
yum update
--- End code ---
Install MySQL as usual and start the service. During installation, you will be asked if you want to accept the results from the .rpm file’s GPG verification. If no error or mismatch occurs, enter y.

--- Code: ---sudo yum install mysql-server
sudo systemctl start mysqld
--- End code ---
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 not advised but you may change the address it listens on by modifying the bind-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.

--- Code: --- sudo mysql_secure_installation
--- End code ---
You will be given the choice to change the MySQL root password, remove anonymous user accounts, disable root logins outside of localhost, and remove test databases. It is recommended that you answer yes to these options. You can read more about the script in in the MySQL Reference Manual.
Using MySQL
The standard tool for interacting with MySQL is the mysql client which installs with the mysql-server package. The MySQL client is used through a terminal.
Root Login
To log in to MySQL as the root user:

--- Code: ---mysql -u root -p
--- End code ---
When prompted, enter the root password you assigned when the mysql_secure_installation script was run.
You’ll then be presented with a welcome header and the MySQL prompt as shown below:

--- Code: --- mysql>
To generate a list of commands for the MySQL prompt, enter \h. You’ll then see:
--- End code ---

--- Code: ---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

--- End code ---
In the example below, testdb is the name of the database, testuser is the user, and password is the user’s password.

--- Code: --- create database testdb;
 create user 'testuser'@'localhost' identified by 'password';
 grant all on testdb.* to 'testuser' identified by 'password';
--- End code ---
You can shorten this process by creating the user while assigning database permissions:

--- Code: --- create database testdb;
 grant all on testdb.* to 'testuser' identified by 'password';
--- End code ---
Then exit MySQL.

--- Code: ---exit
--- End code ---
Create a Sample Table
Log back in as testuser.

--- Code: ---mysql -u testuser -p
--- End code ---
Create a sample table called customers. This creates a table with a customer ID field of the type INT for integer (auto-incremented for new records, used as the primary key), as well as two fields for storing the customer’s name.

--- Code: ---use testdb;
create table customers (customer_id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, first_name TEXT, last_name TEXT);
--- End code ---
Then exit MySQL.

--- Code: ---exit
--- End code ---
Reset the MySQL Root Password
If you forget your root MySQL password, it can be reset.
Stop the current MySQL server instance, then restart it with an option to not ask for a password.

--- Code: ---sudo systemctl stop mysqld
sudo mysqld_safe --skip-grant-tables &
--- End code ---
Reconnect to the MySQL server with the MySQL root account.

--- Code: ---mysql -u root
--- End code ---
Use the following commands to reset root’s password. Replace password with a strong password.

--- Code: ---use mysql;
update user SET PASSWORD=PASSWORD("password") WHERE USER='root';
flush privileges;
exit
--- End code ---
Then restart MySQL.

--- Code: ---sudo systemctl start mysqld
--- End code ---
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.
Download MySQL Tuner to your home directory.

--- Code: ---wget https://raw.githubusercontent.com/major/MySQLTuner-perl/master/mysqltuner.pl
--- End code ---
To run it:

--- Code: ---perl ./mysqltuner.pl
--- End code ---
You will be asked for the MySQL root user’s name and password. The output will show two areas of interest: General recommendations and Variables to adjust.
MySQL Tuner is an excellent starting point to optimize a MySQL server but it would be prudent to perform additional research for configurations tailored to the application(s) utilizing MySQL on your Linode.

fulmoke:
Thx Nefer! nice share, but i have a question, CentOS 7 is better them Debian? Which recommend?

Nefer:

--- Quote from: fulmoke on February 19, 2017, 04:32:37 AM ---Thx Nefer! nice share, but i have a question, CentOS 7 is better them Debian? Which recommend?

--- End quote ---
I Always used CentOS form my project, so im use to use it. I advice you to search on Google but you will not find an answer.

CentOS and Debian in general are the most raccomanded.

Cheers,
Nefer

MarGaZeaS:
thanks for the guide :D

smfc:
i hope to soon try this out, first i simply wanted to run server on whatever has more guides - windows, when i get at least little use to it will reinstall everything completely on centOS

Navigation

[0] Message Index

[#] Next page

Go to full version