1. 程式人生 > 其它 >css字型顏色漸變_HTML css 實現字型漸變顏色

css字型顏色漸變_HTML css 實現字型漸變顏色

技術標籤:伺服器運維mysqllinuxcentos伺服器運維

1-啟動Mysql

systemctl start mysqld

2-獲取安裝時的臨時密碼: 3>2X-WNr6aal

grep 'temporary password' /var/log/mysqld.log

倘若沒有:(1)刪除原來安裝過的mysql殘留的資料

rm -rf /var/lib/mysql

2)再啟動mysql

3-登入

mysql -u root -p

4-修改密碼

set password=password("yourpassword")

5-資料庫常用命令

檢視資料庫

show databases;

建立資料庫

create database jfedu;

進入資料庫

use jfedu;

顯示資料庫表

show tables;

建立名為t1表,並建立兩個字

create table t1 (id varchar(20),name varchar(20));

向表中插入資料

insert into t1 values("1","jfedu");

檢視t1表資料內容

select from t1;

id,age多條件查詢

select from t1 where id=1 and age='jfedu';

檢視t1表資料內容

alter table t1 modify column name varchar
(20); update t1 set name='jfedu.net' where id=1;

重新整理許可權

flush privileges;

清空表內容

delete table t1;

清空表

drop table t1;

刪除test資料庫

drop database test;

檢視資料庫字符集

show variables like '%char%';

檢視MYSQL儲存引擎

show engines;

檢視資料庫的預設引擎

show variables like '%storage_engine%';

修改MySQL t1表儲存引擎。

alter table t1 engine=
innodb;

6-MySQL資料庫密管理

A-授權localhost主機通過test使用者和pas密碼訪問本地的Jfedu庫的所有許可權

grant all on jfedu to [email protected] identified by 'pas';

B-授權所有主機通過test使用者和pas密碼訪問本地的jfedu庫的查詢、插入、更新、刪除許可權。

grant select,insert,update,delete on . to [email protected]"%" identified by 'pas';

C-授權192.168.1.11主機通過test使用者及pas密碼訪問本地的jfedu庫的所有許可權。

grant all on jfedu to [email protected]'192.168.1.11' identified by 'pas';

7-Mysql資料庫密碼破解方法

停止MySQL服務

systemctl stop mysqld
/etc/init.d/mysqld stop

新增索引:

ALTER TABLE `table_name` ADD INDEX index_name ( `column` )

建立多列索引:

ALTER TABLE `table_name` ADD INDEX index_name ( `column1`, `column2`, `column3` )

開啟MySQL慢查詢日誌方法二

vi /etc/my.cnf

新增以下內容

log-slow-queries = /data/mysql/localhost.log
long_query_time = 0.01
log-queries-not-using-indexes

8-慢查詢mysqldumpslow -h檢視幫助資訊

按返回的行數從大到小,檢視前2行,命令

mysqldumpslow -s r -t 2 localhost.log

按照查詢總時間從大到小,檢視前5行,同時過濾select的SQL語句

mysqldumpslow -s t -t 5 -g "select" localhost.log