linux編譯安裝mysql5 1 x

2022-06-24 09:12:13 字數 1788 閱讀 9447

安裝mysql,安裝前準備

如果mysql使用者不存在,那麼新增mysql使用者

groupadd mysql

useradd -g mysql mysql

mysql編譯安裝

make時間特別長

wget 

tar -zxvf mysql-5.1.70.tar.gz

cd mysql-5.1.70

yum install ncurses ncurses-devel

./configure '--prefix=/usr/local/mysql' '--without-debug' '--with-charset=utf8' '--with-extra-charsets=all' '--enable-assembler' '--with-pthread' '--enable-thread-safe-client' '--with-mysqld-ldflags=-all-static' '--with-client-ldflags=-all-static' '--with-big-tables' '--with-readline' '--with-ssl' '--with-embedded-server' '--enable-local-infile' '--with-plugins=innobase'

make

make install

到此mysql就安裝到了/usr/local/mysql路徑下,下面開始mysql的配置工作

------------------------------------

安裝mysql選項檔案

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

mysql設定開機自啟動

cp -r support-files/mysql.server /etc/init.d/mysqld  

/sbin/chkconfig --del mysqld

/sbin/chkconfig --add mysqld

配置許可權表

chown -r mysql:mysql /usr/local/mysql

/usr/local/mysql/bin/mysql_install_db --user=mysql

啟動mysql

給/etc/init.d/mysql 執行許可權,然後執行

chmod a+wrx /etc/init.d/mysql

/etc/init.d/mysqld start

mysql初始化配置:

包括密碼設定等

export path=/usr/local/mysql/bin:$path

/usr/local/mysql/bin/mysql_secure_installation

在彈出的對話方塊中要求輸入密碼:

enter current password for root (enter for none):

預設打回車,然後重新設定root密碼:

set root password? [y/n] y

disallow root login remotely? [y/n] n

remove test database and access to it? [y/n] n

reload privilege tables now? [y/n] y

至此,mysql執行成功

如何安裝MySQL5到Linux

以rh9為例 4.你的mysql安裝路徑 bin mysqladmin u root password new password 改變mysql root口令 cp 你的mysql安裝路徑 support files mysql.server etc init.d 這條命令將mysql啟動指令碼安裝...

記錄 linux下安裝mysql5

shell groupadd mysql 普通使用者 shell useradd g mysql mysql 為mysqld增加乙個登入使用者和組 shell gunzip mysql version.tar.gz tar xvf shell cd mysql version 挑選乙個你想解開分發包...

Linux非root使用者安裝mysql5 7

rpm qa grep i mysql rpm ev 如 rpm ev mysql community common 5.7.23 1.el7.x86 64 解壓shell tar xzvf mysql 5.7.31 linux glibc2.12 x86 64.tar.gz shell mv my...