yum -y install mysql-server mysql mysql-devel
離線安裝:
wget
1,複製到指定目錄
mv mysql-5.6.35-linux-glibc2.5-x86_64 /usr/local/mysql
2,建立mysql使用者和組
groupadd mysql
useradd -r -g mysql mysql -d /usr/local/mysql
passwd mysql
3,修改目錄許可權
chown -r mysql:mysql /usr/local/mysql
4,安裝資料庫
su mysql
/usr/local/mysql/scripts/mysql_install_db --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data
如有報錯:
1)scripts/mysql_install_db: /usr/bin/perl: bad interpreter: no such file or directory。
需要安裝perl以及perl-devel.執行命令:yum –y install perl perl-devel
2),installing mysql system tables.../usr/local/mysql/bin/mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: no such file or directory
安裝:yum install libaio* -y
5,.複製mysql配置檔案
cd /usr/local/mysql/support-files
cp my-default.cnf /etc/my.cnf
6,新增系統服務
cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysql
chkconfig mysql on
7,.新增環境變數
export mysql_home=/usr/local/mysql
export path=$path:$mysql_home/bin
8,啟動mysql
service mysql start
9,設定root密碼
mysqladmin -u root password '123456'
10,設定預設埠
vi /etc/my.cnf
[mysqld]
basedir=/usr/local/mysql
datadir=/usr/local/mysql/data
port=3306
server_id=1
socket=/tmp/mysql.sock
11,允許所有外部鏈結訪問(可選)
select host,user,authentication_string from user;
mysql -u root -p
grant all privileges on *.* to 'root'@'%' identified by '123456' with grant option;
flush privileges;
# yum install gcc gcc-c++ autoconf automake
mysql10067錯誤 如何安裝MySQL資料庫
2.解壓mysql安裝包到指定目錄,我的目錄為c mysql,並複製乙份my default.ini檔案備用。修改my default.ini檔案 basedir c mysql datadir c mysql data port 3306 注意 去掉原始檔上述三行前面的 新增環境變數 新建系統變數...
mysql離線安裝
檢查是否安裝有mysql server rpm qa grep mysql 2.如果查詢到了,刪除 rpm e mysql libs 普通刪除模式 rpm e nodeps mysql libs 強力刪除模式,如果使用上面命令刪除時,提示有依賴的其它檔案,則用該命令可以對其進行強力刪除 1.2步必須...
離線安裝mysql
2.上傳到伺服器並且解壓 我解壓到了 usr local src mysql中 解壓後為 有以上的包 rpm結尾的 我們要解除安裝的是包含有mariadb關鍵字的rpm包 rpm qa grep mariadb 我的出現如下 mariadb libs 5.5.41 2.el7 0.x86 64 使用...