91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

mysql怎么樣進行安裝

發布時間:2021-12-20 11:26:09 來源:億速云 閱讀:182 作者:小新 欄目:數據庫

這篇文章主要為大家展示了“mysql怎么樣進行安裝”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“mysql怎么樣進行安裝”這篇文章吧。

一、下載安裝包

1,下載hive http://mirrors.hust.edu.cn/apache/   得到apache-hive-1.1.0.tar.gz  ,放到該目錄下 /home/

2,下載mysql  https://dev.mysql.com/downloads/file/?id=471503得到 

 我的linux版本是6.8,下載時最好選擇glib版本,如果下載其它各種組合包,會提示各種依賴關系,比較麻煩

 

拷貝到該目錄下/mysql/

 

二、安裝mysql

1.卸載系統自帶的mysql相關安裝包,僅卸載 mysql 開頭的包

rpm -qa | grep -i mysql

rpm -ev mysql-community-libs-5.7.19-1.el7.x86_64 --nodeps

2.創建用戶和組

groupadd mysql  

useradd -r -g mysql mysql

3.安裝

解壓tar -zxvf mysql-5.7.19-linux-glibc2.12-x86_64.tar.gz -C ../usr/local

修改目錄[root@hadoop local]# mv mysql-5.7.19-linux-glibc2.12-x86_64/ mysql

添加授權[root@hadoop mysql]# chown -R mysql.mysql /usr/local/mysql

新建data目錄[root@hadoop mysql]# mkdir data

4.安裝./bin/mysqld --initialize --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data

 注意最后一行,這也是和之有版本不同的地方,它給了root一個初始密碼,此root為mysql的root用戶,后面要登錄的時候要用到這個密碼。#H#,?*Els4G&

4.將mysql/目錄下除了data/目錄的所有文件,改回root用戶所有,mysql用戶只需作為mysql/data/目錄下所有文件的所有者。

[root@hadoop mysql]# chown -R root .

[root@hadoop mysql]# chown -R mysql data

5.創建tmp文件夾,并授權

[root@hadoop mysql]# mkdir tmp

[root@hadoop mysql]# chown -R mysql:mysql tmp

6.復制并編輯配置文件

[root@hadoop etc]# cp my.cnf.rpmsave my.cnf

[root@hadoop etc]# vi my.cnf

7.添加以下內容

basedir = /usr/local/mysql

datadir = /usr/local/mysql/data

port = 3306

socket = /usr/local/mysql/tmp/mysql.sock

sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES

8.將mysql.server拷貝到/etc/init.d/mysql

[root@hadoop support-files]# cp mysql.server /etc/init.d/mysql

[root@hadoop init.d]# chmod +x mysql

 9.把mysql注冊為開機啟動的服務
[root@hadoop init.d]# chkconfig --add mysql

[root@hadoop init.d]# chkconfig --list mysql

mysql           0:off  1:off  2:on  3:on  4:on  5:on  6:off

10.啟動

[root@hadoop init.d]# /etc/init.d/mysql start

Starting MySQL.Logging to '/usr/local/mysql/data/hadoop.err'.

.                                                         [ OK ]

11.修改環境變量

export PATH=$PATH:$HADOOP_HOME/bin:$HADOOP_HOME/sbin:/usr/local/mysql:/usr/local/mysql/bin

[root@hadoop init.d]# source /etc/profile

12.使用root登錄時報錯

[root@hadoop init.d]# mysql -uroot -p #H#,?*Els4G&

Enter password:

ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)

13.修改 /etc/my.cnf文件,補充mysql和client配置

[mysqld]

basedir = /usr/local/mysql

datadir = /usr/local/mysql/data

port = 3306

socket = /usr/local/mysql/tmp/mysql.sock

sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES

skip-grant-tables

[mysql]

default-character-set=utf8

socket = /usr/local/mysql/tmp/mysql.sock

[client]

default-character-set=utf8

socket = /usr/local/mysql/tmp/mysql.sock

14.重新登錄,并輸入新密碼

[root@hadoop etc]# mysql -uroot -p #H#,?*Els4G&

Enter password:  mysql

Welcome to the MySQL monitor. Commands end with ; or \g.

Your MySQL connection id is 3

Server version: 5.7.19 MySQL Community Server (GPL)

 

Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.

 

Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.

 

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

 

mysql>

 

15.mysql服務的開啟和關閉

#/etc/init.d/mysql start   或者   serivce mysql start  或者  bin/mysqld_safe&  

#/etc/init.d/mysql stop    或者   service mysql stop   或者  bin/mysqladmin -uroot -p 

 

三、添加hive用戶,會提示如下錯誤

mysql> create user 'hive'@'%' identified by 'hive';

ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement

強制寫出

mysql> flush privileges;

重新執行

mysql> create user 'hive'@'%' identified by 'hive';

Query OK, 0 rows affected (0.00 sec)

 

mysql> select host,user from user;

+-----------+---------------+

| host     | user         |

+-----------+---------------+

| %        | hive         |

| localhost | mysql.session |

| localhost | mysql.sys    |

| localhost | root         |

+-----------+---------------+

4 rows in set (0.00 sec)

以上是“mysql怎么樣進行安裝”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

南宁市| 鹰潭市| 永嘉县| 昌都县| 比如县| 岳西县| 二手房| 博白县| 绥化市| 阜城县| 梓潼县| 文安县| 台前县| 综艺| 石家庄市| 津市市| 习水县| 常州市| 上栗县| 登封市| 德阳市| 施秉县| 常德市| 红原县| 岳阳市| 内黄县| 河北省| 曲麻莱县| 姚安县| 即墨市| 福州市| 华安县| 客服| 益阳市| 阿拉善右旗| 都兰县| 漯河市| 霍州市| 太康县| 佛教| 厦门市|