溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Centos_6.5之Mysql數(shù)據(jù)庫

發(fā)布時(shí)間:2020-07-25 10:51:34 來源:網(wǎng)絡(luò) 閱讀:580 作者:LinDuYan_ 欄目:數(shù)據(jù)庫

1、安裝Mysql數(shù)據(jù)庫

 yum install mysql mysql-server mysql-devel -y

    Centos_6.5之Mysql數(shù)據(jù)庫

2、啟動Mysql服務(wù)

 service mysqld start

Centos_6.5之Mysql數(shù)據(jù)庫

3、設(shè)置Mysql的服務(wù)開機(jī)自動啟動

 chkconfig mysqld on

Centos_6.5之Mysql數(shù)據(jù)庫

4、更改Mysql管理員的密碼(注意:不是Centos系統(tǒng)的密碼)

 mysqladmin -u root password 'asd1!!'

Centos_6.5之Mysql數(shù)據(jù)庫

5、使用root管理員登入Mysql

 mysql -u root -p

Centos_6.5之Mysql數(shù)據(jù)庫

6、創(chuàng)建數(shù)據(jù)庫abc(記得命令后面需要有“;”結(jié)尾)

 create database abc;

Centos_6.5之Mysql數(shù)據(jù)庫

7、使用abc數(shù)據(jù)庫,并在該數(shù)據(jù)庫上創(chuàng)建一個(gè)table表,命名為table1,創(chuàng)建完顯示talbe1結(jié)構(gòu),要求如下:

                              Centos_6.5之Mysql數(shù)據(jù)庫

 use abc;

 create table table1(
   RID int AUTO_INCREMENT,
   Type varchar(10),
   Price Decimal(6,2),
   Checkln char(1),
   PRIMARY KEY (RID));

    Centos_6.5之Mysql數(shù)據(jù)庫

8、備份abc數(shù)據(jù)庫,每周五的凌晨1點(diǎn)鐘備份abc數(shù)據(jù)庫到/var/databak/abc.sql

 crontab -e        打開備份列表

Centos_6.5之Mysql數(shù)據(jù)庫

 0 1 * * 5 mysqldump -uroot -pasd1!! abc > /var/databak/abc.sql

Centos_6.5之Mysql數(shù)據(jù)庫

9、重啟Mysql服務(wù)

 service mysqld restart

Centos_6.5之Mysql數(shù)據(jù)庫



    


向AI問一下細(xì)節(jié)

免責(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)容。

AI