mysql安裝公升級

2021-07-27 05:59:31 字數 1188 閱讀 9857

1.1安裝方法比較

1.2 rpm 安裝步驟

shell> rpm -ivh mysql-server-5.5.i386.rpm

shell> rpm -ivh mysql-client-5.5.i386.rpm

1.3 二進位制安裝步驟

root 登陸,執行如下步驟:

shell> groupadd mysql

shell> useradd -g mysql mysql

shell> cd /home/mysql

shell>tar -xzvf /home/mysql/mysql-5.5-os.tar.gz

shell> ln -s mysql-5.5-os.tar.gz mysql

shell> cd mysql

shell> scripts/mysql_install_db --user=mysql

shell> chown -r root:mysql .

shell> chown -r mysql:mysql data

shell> bin/mysqld_safe --user=mysql &

1.4 原始碼安裝步驟

root 登陸,執行如下步驟:

shell> groupadd mysql

shell> useradd -g mysql mysql

shell> gunzip < mysql-version.tar.gz | tar -xvf -

shell> cd mysql-version

shell> .cmake ..

shell> make

shell> make install

shell> cp support-files/my-medium.cnf /etc/my.cnf

shell> cd /usr/local/mysql

shell> bin/mysql_install_db --user=mysql

shell> chown -r root .

shell> chown -r mysql var

shell> chgrp -r mysql .

bin/mysql_install_db --user=mysql

5.7編譯安裝需要boost庫支援,cmake版本要求高。

mysql公升級 rpm安裝

mysql版本5.7.29公升級到5.7.30 由於我們安裝mysql的方式是通過mysql 5.7.29 1.el7.x86 64.rpm bundle.tar中的rpm包安裝 rpm uvh mysql community rpm 所以公升級的方式是專門針對這種方式的.其實公升級的過程跟從0開始...

MySQL安裝出現公升級 MySQL安裝和公升級

sudo wget sudo rpm uvh mysql57 community release el6 8.noarch.rpm sudo yum repolist all grep mysql vi etc yum.repos.d mysql community.repo 由於使用5.6版本,所...

centos 安裝mysql 公升級版本

root localhost local yum install gcc c root localhost local yum install ncurses devel root localhost tar zxv f cmake 2.8.10.2.tar.gz 解壓壓縮包 root localh...