- 創(chuàng)建數(shù)據(jù)目錄
mkdir /app/data -p
- 創(chuàng)建用戶
useradd -r -d /app/data -s /sbin/nologin -u 36 mysql
- 修改數(shù)據(jù)目錄的屬主與屬組
chown mysql.mysql /app/data/
- 下載二進制文件,并解壓
tar xf mariadb-5.5.57-linux-x86_64.tar.gz -C /usr/local
- 創(chuàng)建鏈接文件县恕、
ln -s /usr/local/mariadb-5.5.57-linux-x86_64/ mysql
- 改屬組
chgrp -R mysql mysql/
- 創(chuàng)建配置文件的目錄
mkdir /etc/mysql
- 查看/usr/local/mysql/supprort-files下的目錄文件
[root@root support-files]# ls
binary-configure my-huge.cnf 適合數(shù)據(jù)量巨大的場景 my-large.cnf適合數(shù)據(jù)量較大的場景 my-small.cnf 適合小數(shù)據(jù)量的場景 mysql-log-rotate SELinux
magic my-innodb-heavy-4G.cnf my-medium.cnf mysqld_multi.server mysql.server
- 復制適合較大場景的配置文件东羹,并重命名為my.cnf
cp support-files/my-huge.cnf /etc/mysql/my.cnf
- 編輯 /etc/mysql/my.cnf 文件
root@root support-files]# vim /etc/mysql/my.cnf
# Example MariaDB config file for very large systems.
#
# This is for a large system with memory of 1G-2G where the system runs mainly
# MariaDB.
# Example MariaDB config file for very large systems.
#
# This is for a large system with memory of 1G-2G where the system runs mainly
# MariaDB.
#
# MariaDB programs look for option files in a set of
# locations which depend on the deployment platform.
# You can copy this option file to one of those
# locations. For information about these locations, do:
# 'my_print_defaults --help' and see what is printed under
# Default options are read from the following files in the given order:
# More information at: http://dev.mysql.com/doc/mysql/en/option-files.html
#
# In this file, you can use all long options that a program supports.
# If you want to know which options a program supports, run the program
# with the "--help" option.
# The following options will be passed to all MySQL clients
[client]
#password = your_password
port = 3306
socket = /tmp/mysql.sock
# Here follows entries for some specific programs
# The MySQL server
[mysqld]
datadir = /app/data # 指定安裝目錄;暫時只修改此處
innodb_file_per_table = on #表示使用innodb存儲引擎,并每一張表創(chuàng)建一個單獨的數(shù)據(jù)庫文件
skip_name_resolve = on #表示禁用主機名解析
port = 3306
socket = /tmp/mysql.sock
skip-external-locking
key_buffer_size = 384M
max_allowed_packet = 1M
table_open_cache = 512
sort_buffer_size = 2M
read_buffer_size = 2M
read_rnd_buffer_size = 8M
myisam_sort_buffer_size = 64M
thread_cache_size = 8
query_cache_size = 32M
# Try number of CPU's*2 for thread_concurrency
thread_concurrency = 8
# Point the following paths to a dedicated disk
#tmpdir = /tmp/
# Don't listen on a TCP/IP port at all. This can be a security enhancement,
# if all processes that need to connect to mysqld run on the same host.
# All interaction with mysqld must be made via Unix sockets or named pipes.
# Note that using this option without enabling named pipes on Windows
# (via the "enable-named-pipe" option) will render mysqld useless!
#
#skip-networking
# Replication Master Server (default)
# binary logging is required for replication
log-bin=mysql-bin
# required unique id between 1 and 2^32 - 1
# defaults to 1 if master-host is not set
# but will not function as a master if omitted
server-id = 1
# Replication Slave (comment out master section to use this)
#
# To configure this host as a replication slave, you can choose between
# two methods :
#
# 1) Use the CHANGE MASTER TO command (fully described in our manual) -
# the syntax is:
#
# CHANGE MASTER TO MASTER_HOST=<host>, MASTER_PORT=<port>,
# MASTER_USER=<user>, MASTER_PASSWORD=<password> ;
#
# where you replace <host>, <user>, <password> by quoted strings and
# <port> by the master's port number (3306 by default).
#
# Example:
#
# CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
# MASTER_USER='joe', MASTER_PASSWORD='secret';
#
# OR
#
# 2) Set the variables below. However, in case you choose this method, then
# start replication for the first time (even unsuccessfully, for example
# if you mistyped the password in master-password and the slave fails to
# connect), the slave will create a master.info file, and any later
# change in this file to the variables' values below will be ignored and
# overridden by the content of the master.info file, unless you shutdown
# the slave server, delete master.info and restart the slaver server.
# For that reason, you may want to leave the lines below untouched
# (commented) and instead use CHANGE MASTER TO (see above)
#
# required unique id between 2 and 2^32 - 1
# (and different from the master)
# defaults to 2 if master-host is set
# but will not function as a slave if omitted
#server-id = 2
#
# The replication master for this slave - required
#master-host = <hostname>
#
# The username the slave will use for authentication when connecting
# to the master - required
#master-user = <username>
#
# The password the slave will authenticate with when connecting to
# the master - required
#master-password = <password>
#
# The port the master is listening on.
# optional - defaults to 3306
#master-port = <port>
#
# binary logging - not required for slaves, but recommended
#log-bin=mysql-bin
#
# binary logging format - mixed recommended
#binlog_format=mixed
# Uncomment the following if you are using InnoDB tables
#innodb_data_home_dir = /usr/local/mysql/data
#innodb_data_file_path = ibdata1:2000M;ibdata2:10M:autoextend
#innodb_log_group_home_dir = /usr/local/mysql/data
# You can set .._buffer_pool_size up to 50 - 80 %
# of RAM but beware of setting memory usage too high
#innodb_buffer_pool_size = 384M
#innodb_additional_mem_pool_size = 20M
# Set .._log_file_size to 25 % of buffer pool size
#innodb_log_file_size = 100M
#innodb_log_buffer_size = 8M
#innodb_flush_log_at_trx_commit = 1
#innodb_lock_wait_timeout = 50
[mysqldump]
quick
max_allowed_packet = 16M
[mysql]
no-auto-rehash
# Remove the next comment character if you are not familiar with SQL
#safe-updates
[myisamchk]
key_buffer_size = 256M
sort_buffer_size = 256M
read_buffer = 2M
write_buffer = 2M
[mysqlhotcopy]
interactive-timeout
- 復制啟動文件到/etc/init.d/目錄下并重命名為mysqld
cp support-files/mysql.server /etc/init.d/mysqld
- 添加服務腳本到chkconfig管理中去
chkconfig --add mysqld
- 設置開機自動啟動
chkconfig mysqld on
- 查看是否設置成功
chkconfig --list mysqld
- 創(chuàng)建日志文件
touch /var/log/mysqld.log
- 設置日志文件的屬主屬組
chown mysql.mysql /var/log/mysqld.log
- 運行數(shù)據(jù)庫初始化腳本忠烛;指定數(shù)據(jù)目錄與用戶
/usr/local/mysql/scripts/mysql_install_db --datadir=/app/data --user=mysql
- 添加PATH環(huán)境變量
vim /etc/profile.d/mysql.sh
export PATH=/usr/local/mysql/bin/:$PATH
- 讓系統(tǒng)重讀
./etc/profile.d/mysql.sh
- 運行系統(tǒng)安全腳本
[root@root ~]# /usr/local/mysql/bin/mysql_secure_installation
/usr/local/mysql/bin/mysql_secure_installation: line 393: find_mysql_client: command not found
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MariaDB to secure it, we'll need the current
password for the root user. If you've just installed MariaDB, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.
Enter current password for root (enter for none): 輸入密碼属提;沒密碼直接回車
OK, successfully used password, moving on...
Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.
Set root password? [Y/n] y是否設置密碼 y與回車都是都設密碼n不設密碼
New password: 密碼
Re-enter new password: 確認密碼
Password updated successfully!
Reloading privilege tables..
... Success!
By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.
Remove anonymous users? [Y/n] 是否刪除匿名用戶y與回車是刪除
... Success!
Normally, root should only be allowed to connect from 'localhost'. This
ensures that someone cannot guess at the root password from the network.
Disallow root login remotely? [Y/n] n 是否禁用遠程用戶登錄
... skipping.
By default, MariaDB comes with a database named 'test' that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.
Remove test database and access to it? [Y/n] n 是否刪除測試庫
... skipping.
Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.
Reload privilege tables now? [Y/n] y 以上設置是否要生效
... Success!
Cleaning up...
All done! If you've completed all of the above steps, your MariaDB
installation should now be secure.
Thanks for using MariaDB!
- 登錄
mysql -uroot -p 回車輸入口令