CentOS下安裝mysql5.5

來源:互聯網
上載者:User

作業系統:Centos6.5最新版本

mysql版本:mysql-5.5.36-linux2.6-i686.tar.gz
:http://mirrors.sohu.com/mysql/MySQL-5.5/

此檔案為編譯後的檔案 ,可以直接使用

1.安裝Mysql

groupadd mysql
useradd -r -g mysql mysql
cd /home
tar -zxvf mysql-5.5.36-linux2.6-x86_64.tar.gz
mv mysql-5.5.36-linux2.6-x86_64 mysql-5.5

cd /usr/local

ln -s /home/mysql-5.5 mysql

cd mysql

chown -R mysql .(將該目錄的使用者權限全部更改為mysql使用者)注意後面的點不能丟掉
chgrp -R mysql .(將該目錄的使用者組全部改為mysql使用者組)
./scripts/mysql_install_db --user=mysql(將mysql目錄的資料庫使用許可權指定為mysql)
chown -R root .
chown -R mysql data
cp support-files/my-medium.cnf /etc/my.cnf(將目前的目錄下的設定檔拷貝到系統設定檔下,並更名為my.cnf)

cp support-files/mysql.server /etc/init.d/mysqld
chmod +x /etc/init.d/mysqld
chkconfig --add mysqld
chkconfig --level 345 mysqld on
service mysqld restart
/usr/local/mysql/bin/mysqladmin -u root password '123456'(設定root使用者登入mysql的密碼)
/usr/local/mysql/bin/mysql -u root –p(進入並訪問mysql資料庫)


2.建立使用者

//登入MYSQL
@>mysql -u root -p
@>密碼
//建立使用者
mysql> insert into mysql.user(Host,User,Password) values("localhost","phplamp",password("1234"));
//重新整理系統許可權表
mysql>flush privileges;
這樣就建立了一個名為:phplamp 密碼為:1234 的使用者。

然後登入一下。

mysql>exit;
@>mysql -u phplamp -p
@>輸入密碼
mysql>登入成功

3.為使用者授權。

//登入MYSQL(有ROOT許可權)。我裡我以ROOT身份登入.
@>mysql -u root -p
@>密碼
//首先為使用者建立一個資料庫(phplampDB)
mysql>create database phplampDB;
//授權phplamp使用者擁有phplamp資料庫的所有許可權。
>grant all privileges on phplampDB.* tophplamp@localhostidentified by '1234';
//重新整理系統許可權表
mysql>flush privileges;
mysql>其它操作

/*
如果想指定部分許可權給一使用者,可以這樣來寫:
mysql>grant select,update on phplampDB.* tophplamp@localhostidentified by '1234';
//重新整理系統許可權表。
mysql>flush privileges;
*/

4.刪除使用者。
@>mysql -u root -p
@>密碼
mysql>DELETE FROM user WHERE User="phplamp" and Host="localhost";
mysql>flush privileges;
//刪除使用者的資料庫
mysql>drop database phplampDB;

4.修改指定使用者密碼。
@>mysql -u root -p
@>密碼
mysql>update mysql.user set password=password('新密碼') where User="phplamp" and Host="localhost";
mysql>flush privileges;

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.