mysql 服務(wù)端安裝

一奖唯、安裝概述

本文將繼續(xù)配置我的虛擬機县恕,安裝mysql服務(wù)端东羹,是為了安裝hive工具做準(zhǔn)備,讓mysql作為hive的源數(shù)據(jù)庫忠烛,當(dāng)前mysql版本為社區(qū)版5.7.36属提。

二、安裝步驟

  1. 查看當(dāng)前l(fā)inux版本的位數(shù),兩種方法
  • uname -a 冤议,x86_64顯示當(dāng)前版本為64位
[root@hadoop01 ~]# uname -a 
Linux hadoop01 3.10.0-1062.el7.x86_64 #1 SMP Wed Aug 7 18:08:02 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
  • getconf LONG_BIT斟薇,直接顯示當(dāng)前位數(shù)
[root@hadoop01 ~]# getconf LONG_BIT
64
  1. mysql下載,兩種方法
  • 通過界面下載恕酸,官網(wǎng)下載地址堪滨。本地下載成功后,通過xsecure或xftp工具將其上傳到虛擬機上蕊温。
    https://dev.mysql.com/downloads/mysql/
    image.png

    image.png

    image.png
  • 通過wget命令直接下載到虛擬機
[root@hadoop01 ~]# wget http://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.36-linux-glibc2.12-x86_64.tar.gz
  1. 解壓壓縮包到/usr/local目錄
[root@hadoop01 ~]# tar -xzvf  mysql-5.7.26-linux-glibc2.12-x86_64.tar.gz -C /usr/local/
  1. 修改mysql文件名稱
[root@hadoop01 ~]# cd /usr/local/
[root@hadoop01 local]# mv mysql-5.7.36-linux-glibc2.12-x86_64/ mysql
  1. 創(chuàng)建mysql用戶
[root@hadoop01 local]# adduser mysql
  1. 修改用戶權(quán)限
[root@hadoop01 local]# chown -R mysql:mysql /usr/local/mysql
  1. 創(chuàng)建data目錄
[root@hadoop01 local]# cd mysql/
[root@hadoop01 mysql]# mkdir data
  1. 安裝依賴包
[root@hadoop01 mysql]# yum install libaio
  1. mysql初始化
[root@hadoop01 mysql]# /usr/local/mysql/bin/mysqld --user=mysql --basedir=/usr/local/mysql/ --datadir=/usr/local/mysql/data --initialize
  1. 修改配置文件
[root@hadoop01 mysql]# vim /etc/my.cnf

[mysqld]
datadir=/usr/local/mysql/data
basedir=/usr/local/mysql
socket=/tmp/mysql.sock
user=mysql
port=3306
character-set-server=utf8
#取消密碼驗證
skip-grant-tables
# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0
# Settings user and group are ignored when systemd is used.
# If you need to run mysqld under a different user or group,
# customize your systemd unit file for mariadb according to the
# instructions in http://fedoraproject.org/wiki/Systemd

[mysqld_safe]
log-error=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid

#
# include all files from the config directory
#
!includedir /etc/my.cnf.d
  1. 將mysql加入到服務(wù)中
[root@hadoop01 mysql]# cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysql
  1. 設(shè)置開機啟動
[root@hadoop01 mysql]# chkconfig mysql on
  1. 啟動mysql服務(wù)
[root@hadoop01 mysql]# service mysql start
  1. 加入環(huán)境變量
[root@hadoop01 mysql]# vim /etc/profile

export JAVA_HOME=/usr/local/java/jdk1.8.0_311
export PATH=$PATH:$JAVA_HOME/bin:/usr/local/mysql/bin
  1. 使環(huán)境變量生效
[root@hadoop01 mysql]# source /etc/profile
  1. 登錄進入mysql袱箱,成功
[root@hadoop01 mysql]# mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.36 MySQL Community Server (GPL)

Copyright (c) 2000, 2021, Oracle and/or its affiliates.

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> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
4 rows in set (0.04 sec)

三、我遇到的問題

  1. 啟動mysql服務(wù)時報錯
[root@hadoop01 mysql]# service mysql start
The server quit without updating PID file (/usr/local/mysql/data/hadoop01.pid).

可能是/usr/local/mysql/data/數(shù)據(jù)目錄mysql用戶沒有權(quán)限义矛,解決方案:

  • 授予權(quán)限
[root@hadoop01 mysql]# chown -R mysql.mysql /urs/local/mysql/
  • 殺掉進程
[root@hadoop01 mysql]# ps -ef | grep mysqld
root     29746     1  0 10:30 pts/1    00:00:00 /bin/sh /usr/local/mysql/bin/mysqld_safe --datadir=/usr/local/mysql/data --pid-file=/usr/local/mysql/data/hadoop01.pid
mysql    29961 29746  0 10: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 --user=mysql --log-error=/var/log/mysqld.log --pid-file=/usr/local/mysql/data/hadoop01.pid --socket=/tmp/mysql.sock --port=3306
root     30119 29492  0 11:16 pts/0    00:00:00 grep --color=auto mysqld
You have new mail in /var/spool/mail/root
[root@hadoop01 mysql]# kill -9 29746
[root@hadoop01 mysql]# kill -9 29961
  • 重啟服務(wù)发笔,成功啟動
[root@hadoop01 mysql]# service mysql start
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市凉翻,隨后出現(xiàn)的幾起案子了讨,更是在濱河造成了極大的恐慌,老刑警劉巖制轰,帶你破解...
    沈念sama閱讀 211,265評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件量蕊,死亡現(xiàn)場離奇詭異,居然都是意外死亡艇挨,警方通過查閱死者的電腦和手機残炮,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,078評論 2 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來缩滨,“玉大人势就,你說我怎么就攤上這事÷雎” “怎么了苞冯?”我有些...
    開封第一講書人閱讀 156,852評論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長侧巨。 經(jīng)常有香客問我舅锄,道長,這世上最難降的妖魔是什么司忱? 我笑而不...
    開封第一講書人閱讀 56,408評論 1 283
  • 正文 為了忘掉前任皇忿,我火速辦了婚禮,結(jié)果婚禮上坦仍,老公的妹妹穿的比我還像新娘鳍烁。我一直安慰自己,他們只是感情好繁扎,可當(dāng)我...
    茶點故事閱讀 65,445評論 5 384
  • 文/花漫 我一把揭開白布幔荒。 她就那樣靜靜地躺著糊闽,像睡著了一般。 火紅的嫁衣襯著肌膚如雪爹梁。 梳的紋絲不亂的頭發(fā)上右犹,一...
    開封第一講書人閱讀 49,772評論 1 290
  • 那天,我揣著相機與錄音姚垃,去河邊找鬼傀履。 笑死,一個胖子當(dāng)著我的面吹牛莉炉,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播碴犬,決...
    沈念sama閱讀 38,921評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼絮宁,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了服协?” 一聲冷哼從身側(cè)響起绍昂,我...
    開封第一講書人閱讀 37,688評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎偿荷,沒想到半個月后窘游,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,130評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡跳纳,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,467評論 2 325
  • 正文 我和宋清朗相戀三年忍饰,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片寺庄。...
    茶點故事閱讀 38,617評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡艾蓝,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出斗塘,到底是詐尸還是另有隱情赢织,我是刑警寧澤,帶...
    沈念sama閱讀 34,276評論 4 329
  • 正文 年R本政府宣布馍盟,位于F島的核電站于置,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏贞岭。R本人自食惡果不足惜八毯,卻給世界環(huán)境...
    茶點故事閱讀 39,882評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望瞄桨。 院中可真熱鬧宪彩,春花似錦、人聲如沸讲婚。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,740評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至活合,卻和暖如春雏婶,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背白指。 一陣腳步聲響...
    開封第一講書人閱讀 31,967評論 1 265
  • 我被黑心中介騙來泰國打工留晚, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人告嘲。 一個月前我還...
    沈念sama閱讀 46,315評論 2 360
  • 正文 我出身青樓错维,卻偏偏與公主長得像,于是被迫代替她去往敵國和親橄唬。 傳聞我的和親對象是個殘疾皇子赋焕,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,486評論 2 348

推薦閱讀更多精彩內(nèi)容