資料庫安裝:yum -y install mysql-server
資料庫啟動:service mysqld restart
許可權設定:mysql -uroot -p
use mysql; update user set password=password('123456') where user='root';
grant all privileges on *.* to root@"%.%.%.%" identified by "123456";
use mysql; update user set password=password('aaa123456') where user='yangweixu';
grant all privileges on *.* to yang@"%.%.%.%" identified by "aaa123456";
use mysql; update user set password=password('9jiu123456_aa') where user='tlbb_9999_aa';
grant select, insert, update, delete on tlbbdb.* to tlbb_9999_aa@'%.%.%.%' identified by "9jiu123456_aa";
use mysql; update user set password=password('9jiu123456_xx') where user='tlbb_9999_xx';
grant select, insert, update, delete on tlbbdb.* to tlbb_9999_xx@'%.%.%.%' identified by "9jiu123456_xx";
use mysql; update user set password=password('9jiu123456_dd') where user='tlbb_9999_dd';
grant select, insert, update, delete on tlbbdb.* to tlbb_9999_dd@'%.%.%.%' identified by "9jiu123456_dd";
flush privileges;
exit
安裝驅動包:yum install -y mysql-connector-odbc
資料庫自動啟動:chkconfig --level 3 mysqld on
首先通過chkconfig命令看看mysql在不在可管理的列表中,命令是:
chkconfig --list如果列表中沒有mysqld這個,需要先用這個命令新增:
chkconfig --add mysqld
然後用這個命令設定開機啟動:
chkconfig mysqld on
centos 5.8的,用5.6也行
mysql建表思路 MySQL 建表思路
思想 硬碟如倉庫,表如倉庫中貨架 常用與不常用等分類 欄位如貨物 尺寸是固定或變動 訪問貨物涉及到貨架的佔位 效率。資料型別選用,建表思路,正規化 資料型別特點 資料型別的速度關係 最快 整形 date,time char,enum varchar text blob 最慢 char 與 varch...
轉58同城 mysql建表和使用規範
這裡面都是一些很簡單的規則,看似沒有特別大的意義,但真實的不就是這麼簡單繁雜的工作嗎?軍規適用場景 併發量大 資料量大的網際網路業務 軍規 介紹內容 解讀 講解原因,解讀比軍規更重要 一 基礎規範 1 必須使用innodb儲存引擎 解讀 支援事務 行級鎖 併發效能更好 cpu及記憶體快取頁優化使得資...
mysql建立使用者表 mysql 建庫建表建使用者
1.建立資料庫 create database school 2.使用資料庫 use school 3.建立使用者 create user jame localhost identified by jame 4.授權使用者 注意這裡是用了 哦,可以自己講school也替換成 號 grant sele...