我知道經過這麼多年IT你們很累 但我在砥礪前行..
阿新 • • 發佈:2018-12-12
1. 下載並檢查檔案的完整性
[[email protected] ~]# cd /usr/local ********************************************************** 下載mysql的linux版本:https://dev.mysql.com/downloads/mysql/5.6.html#downloads 如下命令檢查檔案完整性,對比md5是否與網頁下載的完整匹配。 [[email protected] local]# md5sum mysql-5.6.41-linux-glibc2.12-x86_64.tar.gz 61affe944eff55fcf51b31e67f25dc10 mysql-5.6.41-linux-glibc2.12-x86_64.tar.gz **********************************************************
2. 檢查檔案之前是否安裝過
[[email protected] local]# ps -ef|grep mysqld
root 2493 2423 0 19:48 pts/3 00:00:00 grep mysqld
[[email protected] local]# rpm -qa |grep -i mysql
mysql-libs-5.1.73-7.el6.x86_64 [如果只有這個檔案 不刪除也無礙]
3. 解壓mysql安裝包
[[email protected] local]# tar -zxvf mysql-5.6.41-linux-glibc2.12-x86_64.tar.gz
[[email protected] local]# rm -rf mysql-5.6.41-linux-glibc2.12-x86_64.tar.gz
[[email protected] local]# mv mysql-5.6.41-linux-glibc2.12-x86_64 mysql
4. 建立mysqladmin角色
mysqladmin角色來操作資料庫,以後只有這個使用者才能操作資料庫 使用者的根目錄是/usr/local/mysql 而不是/home/mysqladmin。
[[email protected] local]# groupadd -g 101 dba
[[email protected] local]# useradd -u 514 -g dba -G root -d /usr/local/mysql mysqladmin
[[email protected] local]# id mysqladmin
uid=514(mysqladmin) gid=101(dba) groups=101(dba),0(root)
[[email protected] local]# passwd mysqladmin
Changing password for user mysqladmin.
New UNIX password:
BAD PASSWORD: it is too simplistic/systematic
Retype new UNIX password:
passwd: all authentication tokens updated successfully.
--------------------可忽略項--------------------
## if user mysqladmin is existing,please execute the following command of usermod.
##[[email protected] local]# usermod -u 514 -g dba -G root -d /usr/local/mysql mysqladmin #
----------------------------------------
## copy 環境變數配置檔案至mysqladmin使用者的home目錄中,為了以下步驟配置個人環境變數
[[email protected] local]# cp /etc/skel/.* /usr/local/mysql ###important
5. 建立/etc/my.cnf,並貼上以下內容
#defualt start: /etc/my.cnf->/etc/mysql/my.cnf->SYSCONFDIR/my.cnf->$MYSQL_HOME/my.cnf-> --defaults-extra-file->~/my.cnf
[[email protected] mysql]# cd /etc/
[[email protected] etc]# touch my.cnf
[[email protected] etc]# vi my.cnf
[client]
port = 3306
socket = /usr/local/mysql/data/mysql.sock
[mysqld]
port = 3306
socket = /usr/local/mysql/data/mysql.sock
skip-external-locking
key_buffer_size = 256M
sort_buffer_size = 2M
read_buffer_size = 2M
read_rnd_buffer_size = 4M
query_cache_size= 32M
max_allowed_packet = 16M
myisam_sort_buffer_size=128M
tmp_table_size=32M
table_open_cache = 512
thread_cache_size = 8
wait_timeout = 86400
interactive_timeout = 86400
max_connections = 600
# Try number of CPU's*2 for thread_concurrency
thread_concurrency = 32
#isolation level and default engine
default-storage-engine = INNODB
transaction-isolation = READ-COMMITTED
server-id = 1
basedir = /usr/local/mysql
datadir = /usr/local/mysql/data
pid-file = /usr/local/mysql/data/hostname.pid
#open performance schema
log-warnings
sysdate-is-now
binlog_format = MIXED
log_bin_trust_function_creators=1
log-error = /usr/local/mysql/data/hostname.err
log-bin=/usr/local/mysql/arch/mysql-bin
#other logs
#general_log =1
#general_log_file = /usr/local/mysql/data/general_log.err
#slow_query_log=1
#slow_query_log_file=/usr/local/mysql/data/slow_log.err
#for replication slave
#log-slave-updates
#sync_binlog = 1
#for innodb options
innodb_data_home_dir = /usr/local/mysql/data/
innodb_data_file_path = ibdata1:500M:autoextend
innodb_log_group_home_dir = /usr/local/mysql/arch
innodb_log_files_in_group = 2
innodb_log_file_size = 200M
innodb_buffer_pool_size = 2048M
innodb_additional_mem_pool_size = 50M
innodb_log_buffer_size = 16M
innodb_lock_wait_timeout = 100
#innodb_thread_concurrency = 0
innodb_flush_log_at_trx_commit = 1
innodb_locks_unsafe_for_binlog=1
#innodb io features: add for mysql5.5.8
performance_schema
innodb_read_io_threads=4
innodb-write-io-threads=4
innodb-io-capacity=200
#purge threads change default(0) to 1 for purge
innodb_purge_threads=1
innodb_use_native_aio=on
#case-sensitive file names and separate tablespace
innodb_file_per_table = 1
lower_case_table_names=1
[mysqldump]
quick
max_allowed_packet = 16M
[mysql]
no-auto-rehash
[mysqlhotcopy]
interactive-timeout
[myisamchk]
key_buffer_size = 256M
sort_buffer_size = 256M
read_buffer = 2M
write_buffer = 2M
##6. 修改mysql檔案的的許可權(只有mysqladmin才能用)
[[email protected] local]# chown mysqladmin:dba /etc/my.cnf
[[email protected] local]# chmod 640 /etc/my.cnf
[[email protected] etc]# ll my.cnf
-rw-r----- 1 mysqladmin dba 2201 Aug 25 23:09 my.cnf
[[email protected] local]# chown -R mysqladmin:dba /usr/local/mysql
[[email protected] local]# chmod -R 755 /usr/local/mysql
[[email protected] local]# su - mysqladmin
[[email protected] ~]$ pwd
/usr/local/mysql
[[email protected] ~]$ mkdir arch backup
[[email protected] ~]$ scripts/mysql_install_db ###import
## 這錯誤必須返回root使用者才能實現
$-bash: scripts/mysql_install_db: /usr/bin/perl: bad interpreter: No such file or directory
[[email protected] ~]#: yum install -y perl
## 這錯誤必須返回root使用者才能實現
[[email protected] ~]$ scripts/mysql_install_db ###import
Installing MySQL system tables..../bin/mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory #缺少libaio.so 包
[[email protected] ~]#: yum install -y libaio
[[email protected] ~]#: yum -y install numactl
##7. 安裝mysql
[[email protected] ~]$ scripts/mysql_install_db --user=mysqladmin --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data
-bash: scripts/mysql_install_db: /usr/bin/perl: bad interpreter: No such file or directory
............................................................
............................................................
............................................................
[[email protected] ~]$ exit
logout
##8. 配置mysql服務並設定開機時啟動
[[email protected] ~]# cd /usr/local/mysql
#將服務檔案拷貝到init.d下,並重命名為mysql
[[email protected] mysql]# cp support-files/mysql.server /etc/rc.d/init.d/mysql
#賦予可執行許可權
[[email protected] mysql]# chmod +x /etc/rc.d/init.d/mysql
#刪除服務
[[email protected] mysql]# chkconfig --del mysql
#新增服務
[[email protected] mysql]# chkconfig --add mysql
[[email protected] mysql]# chkconfig --level 345 mysql on
[[email protected] mysql]# vi /etc/rc.local
#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.
touch /var/lock/subsys/local
# 只要新增下面這句程式碼就可以了
su - mysqladmin -c "/etc/init.d/mysql start --federated"
##9. 使用mysqladmin角色登入,啟動mysql並檢視程序和埠
[[email protected] mysql]# su - mysqladmin
[[email protected] ~]$ pwd
/usr/local/mysql
[[email protected] ~]$ rm -rf my.cnf
[[email protected] ~]$ mysqld_safe &
[1] 11802
[[email protected] ~]$
150825 22:53:38 mysqld_safe Logging to '/usr/local/mysql/data/hostname.err'.
150825 22:53:38 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data/
150825 22:53:39 mysqld_safe mysqld from pid file /usr/local/mysql/data/hostname.pid ended
[[email protected] ~]$ ps -ef|grep mysqld
514 6247 6219 0 17:30 pts/1 00:00:00 /bin/sh /usr/local/mysql/bin/mysqld_safe
514 6902 6247 2 17:30 pts/1 00:00:01 /usr/local/mysql/bin/mysqld --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data --plugin-dir=/usr/local/mysql/lib/plugin --log-error=/usr/local/mysql/data/hostname.err --pid-file=/usr/local/mysql/data/hostname.pid --socket=/usr/local/mysql/data/mysql.sock --port=3306
514 6927 6219 0 17:31 pts/1 00:00:00 grep mysqld
[[email protected] ~]$ netstat -tulnp | grep mysql
tcp 0 0 :::3306 :::* LISTEN 11541/mysqld
[[email protected] local]# service mysql status
MySQL running (21507) [ OK ]
10. 登入mysql客戶端
[[email protected] ~]$ mysql
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| test |
+--------------------+
mysql> use mysql
mysql> update user set password=password('123456') where user='root';
mysql> select host,user,password from user;
mysql> delete from user where user='';
mysql> flush privileges; 【重要】
mysql> select host,user,password from user;
+----------------+------+-------------------------------------------+
| host | user | password |
+----------------+------+-------------------------------------------+
| localhost | root | *6340BE3C15D246B0D74BAF3F135915ED19E0069F |
| hadoop39 | root | *6340BE3C15D246B0D74BAF3F135915ED19E0069F |
| 127.0.0.1 | root | *6340BE3C15D246B0D74BAF3F135915ED19E0069F |
| ::1 | root | *6340BE3C15D246B0D74BAF3F135915ED19E0069F |
+----------------+------+-------------------------------------------+
##11. 配置.bash_profile
[[email protected] ~]$ vi .bash_profile
# User specific environment and startup programs 【新增如下程式碼到檔案中】
MYSQL_BASE=/usr/local/mysql
export MYSQL_BASE
PATH=${MYSQL_BASE}/bin:$PATH
export PATH
unset USERNAME
#stty erase ^H
set umask to 022
umask 022
PS1=`uname -n`":"'$USER'":"'$PWD'":>"; export PS1
Remark:
Error1: File '/usr/local/mysql/arch/mysql-bin.index' not found (Errcode: 13)
test2.localdomain:mysqladmin:/usr/local/mysql/arch:>chmod 755 *
test2.localdomain:mysqladmin:/usr/local/mysql/arch:>chown –R mysqladmin:dba *
12. 退出並重新登入
[[email protected] ~]# su - mysqladmin
-bash: Remark:: command not found
-bash: /usr/local/mysql/.bash_profile: line 26: syntax error near unexpected token `('
-bash: /usr/local/mysql/.bash_profile: line 26: ` Error1: File '/usr/local/mysql/arch/mysql-bin.index' not found (Errcode: 13)'
vm01:mysqladmin:/usr/local/mysql:>cd ..
vm01:mysqladmin:/usr/local:>