Linux 下安裝和配置 MySQL

來源:互聯網
上載者:User

現在有很多網站使用 Linux + MySql 。MySql 在 Windows 下安裝和配置都很簡單,但是在 Linux 安裝是有點麻煩,對用慣了Windows 的 Linux  初學者來說,真是“相當”麻煩啊!

以 Red Hat Enterprise Linux AS 4.0 中安裝 MySql 的步驟大致如下:

下載 MySQL:
從http://dev.mysql.com/downloads/mysql/5.0.html
下載 Red Hat Enterprise Linux 4 RPM (x86) :MySQL-server-standard-5.0.27-0.rhel4.i386.rpm

安裝MySQL:
rpm -ivh MySQL-server-standard-5.0.27-0.rhel4.i386.rpm --nodeps --force

根據需要修改 /etc/my.cnf,參考配置:
[mysqld]
# 設定預設為 INNODB 表,支援事務,支援行鎖:
default-storage-engine=INNODB
# 設定預設的字元集:
default-character-set=utf8
# 客戶機通訊所使用的緩衝區大小的最大值
max_allowed_packet=16M

啟動 MySQL:
service mysql start
/etc/init.d/mysql start
/usr/share/mysql/mysql.server start

[mysql.server]
# 注釋掉 basedir 行,否則 MySql 可能不能啟動
# 據說是 MySql 的 bug
# basedir=/var/lib

讓MySQL系統啟動時自動啟動:
在 系統設定>伺服器設定>服務 中把 MySql 打勾

root登入時,自動啟動mysql:
在 /root/.bash_profile 檔案中增加1行:
/usr/share/mysql/mysql.server start

查看開機記錄:
/var/log/messages

顯示MySQL所有使用者:
use mysql;
select host,user,password from user;

添加 MySQL 使用者(user name:user1,password:sql):
grant all on *.* to user1@'%' identified by 'sql' with grant option;

刪除 MySQL 使用者:
delete from user where user='user1';

本文地址:http://www.cnblogs.com/anjou/archive/2007/02/16/651638.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.