您好,登錄后才能下訂單哦!
1、安裝Mysql數(shù)據(jù)庫
yum install mysql mysql-server mysql-devel -y
2、啟動Mysql服務(wù)
service mysqld start
3、設(shè)置Mysql的服務(wù)開機(jī)自動啟動
chkconfig mysqld on
4、更改Mysql管理員的密碼(注意:不是Centos系統(tǒng)的密碼)
mysqladmin -u root password 'asd1!!'
5、使用root管理員登入Mysql
mysql -u root -p
6、創(chuàng)建數(shù)據(jù)庫abc(記得命令后面需要有“;”結(jié)尾)
create database abc;
7、使用abc數(shù)據(jù)庫,并在該數(shù)據(jù)庫上創(chuàng)建一個(gè)table表,命名為table1,創(chuàng)建完顯示talbe1結(jié)構(gòu),要求如下:
use abc;
create table table1(
RID int AUTO_INCREMENT,
Type varchar(10),
Price Decimal(6,2),
Checkln char(1),
PRIMARY KEY (RID));
8、備份abc數(shù)據(jù)庫,每周五的凌晨1點(diǎn)鐘備份abc數(shù)據(jù)庫到/var/databak/abc.sql
crontab -e 打開備份列表
0 1 * * 5 mysqldump -uroot -pasd1!! abc > /var/databak/abc.sql
9、重啟Mysql服務(wù)
service mysqld restart
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。