最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

mysql在linux上的安裝之一yum安裝_MySQL

來源:懂視網(wǎng) 責(zé)編:小采 時間:2020-11-09 19:42:23
文檔

mysql在linux上的安裝之一yum安裝_MySQL

mysql在linux上的安裝之一yum安裝_MySQL:mysql的安裝無非以下幾種,其中yum安裝也是rpm安裝中的一種,只不過這種不需要再單獨(dú)下載安裝包,直接根據(jù)操作系統(tǒng)自帶的mysql包進(jìn)行安裝,比較簡單,本篇主要對yum進(jìn)行講解,后續(xù)會對其它幾種方式進(jìn)行總結(jié)。 目前的安裝方式 1,rpm 安裝 2,二進(jìn)制安
推薦度:
導(dǎo)讀mysql在linux上的安裝之一yum安裝_MySQL:mysql的安裝無非以下幾種,其中yum安裝也是rpm安裝中的一種,只不過這種不需要再單獨(dú)下載安裝包,直接根據(jù)操作系統(tǒng)自帶的mysql包進(jìn)行安裝,比較簡單,本篇主要對yum進(jìn)行講解,后續(xù)會對其它幾種方式進(jìn)行總結(jié)。 目前的安裝方式 1,rpm 安裝 2,二進(jìn)制安

mysql的安裝無非以下幾種,其中yum安裝也是rpm安裝中的一種,只不過這種不需要再單獨(dú)下載安裝包,直接根據(jù)操作系統(tǒng)自帶的mysql包進(jìn)行安裝,比較簡單,本篇主要對yum進(jìn)行講解,后續(xù)會對其它幾種方式進(jìn)行總結(jié)。

目前的安裝方式

1,rpm 安裝

2,二進(jìn)制安裝

3,源碼安裝

4,yum安裝

yum方式安裝

1. 安裝操作系統(tǒng)


1.1安裝Red Hat Enterprise Linux 6.2 (64-bit)
arch: x86_64
1.2. 關(guān)閉selinux vi /etc/selinux/config

1.3. service iptables stop 臨時關(guān)閉防火墻


2 安裝數(shù)據(jù)庫MySQL
2.1掛載Redhat鏡像文件 ftp://192.168.0.212/pub/iso/rhel6.2/,命令如下
#mkdir -p /mnt/iso
#mkdir -p /mnt/redhat5.5
# mount 192.168.0.212:/var/ftp/pub/iso/rhel5.5/ /mnt/iso/
# mount -t iso9660 -o loop rhel-server-5.5-x86_64-dvd.iso /mnt/redhat5.5/
2.2 配置yum
# cd /etc/yum.repos.d/
# cp rhel-debuginfo.repo rhel-debuginfo.repo_bak
# vi rhel-debuginfo.repo

[rhel-debuginfo]
name=Red Hat Enterprise Linux $releasever - $basearch - Debug
baseurl=file:///mnt/redhat5.5/Server
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release





[oracle@Redhat5 yum.repos.d]$ ls
el5u5.repo el5u8.repo rhel-debuginfo.repo
[oracle@Redhat5 yum.repos.d]$ cat el5u8.repo
[Server]
name=Red Hat Enterprise Linux 5 update 8
baseurl=ftp://192.168.0.212/pub/src/RHEL5U8/x64/Server
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
[VT]
name=Red Hat Enterprise Linux 5 update 8
baseurl=ftp://192.168.0.212/pub/src/RHEL5U8/x64/VT
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
[Cluster]
name=Red Hat Enterprise Linux 5 update 8
baseurl=ftp://192.168.0.212/pub/src/RHEL5U8/x64/Cluster
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
[ClusterStorage]
name=Red Hat Enterprise Linux 5 update 8
baseurl=ftp://192.168.0.212/pub/src/RHEL5U8/x64/ClusterStorage
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
2.3根據(jù)需求創(chuàng)建mysql數(shù)據(jù)存儲目錄
# mkdir /mysqldata
2.4 yum安裝mysql,mysql-server
# yum install mysql mysql-server
2.5 修改mysql配置文件
# vi /etc/my.cnf
[mysqld]
datadir=/data/mysql
socket=/var/lib/mysql/mysql.sock
user=mysql
# Default to using old password format for compatibility with mysql 3.x
# clients (those using the mysqlclient10 compatibility package).
old_passwords=1
default-character-set=utf8

# Disabling symbolic-links is recommended to prevent assorted security risks;
# to do so, uncomment this line:
# symbolic-links=0

lower_case_table_names=1

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

[mysql]
default-character-set=utf8


2.6啟動mysql,同時添加mysql自動啟動
# /etc/rc.d/init.d/mysqld start
# chkconfig mysqld on
# chkconfig --list mysqld

2.7 修改mysql密碼
# mysql -u root
/usr/bin/mysqladmin -u root password 123456

mysql> grant all on mysql.* to 'root'@'localhost' identified by 'mysql8895'
mysql> source /opt/MYSQL.sql 導(dǎo)入數(shù)據(jù)
mysql> exit

建立用戶:

mysql> grant all on dcs.* to "ligang"@"%" identified by "dcsA99ligang";

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

mysql在linux上的安裝之一yum安裝_MySQL

mysql在linux上的安裝之一yum安裝_MySQL:mysql的安裝無非以下幾種,其中yum安裝也是rpm安裝中的一種,只不過這種不需要再單獨(dú)下載安裝包,直接根據(jù)操作系統(tǒng)自帶的mysql包進(jìn)行安裝,比較簡單,本篇主要對yum進(jìn)行講解,后續(xù)會對其它幾種方式進(jìn)行總結(jié)。 目前的安裝方式 1,rpm 安裝 2,二進(jìn)制安
推薦度:
標(biāo)簽: 安裝 安裝包 linux
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top