mysql服務程式在**?
which mysqld
maysql服務啟動了嗎?啟用了才能用mysql客戶端連線
service mysql status或者ps -ef lgrep -i mysqld lgrep -v grep
客戶端連線mysql服務
mysql -uroot -p回車,錄入mysql的root使用者密碼
-u代表mysql的使用者名稱,可以不加空格直接填寫連線使用者-uroot
-p後面可以不寫密碼,直接回車後會提醒錄入密碼,這樣比較安全
退出連線
quit或者exit
檢視mysql伺服器版本
select version();
檢視當前連線使用者
select user();
檢視當前伺服器日期和時間
select now();
當前使用者可以訪問的資料庫
show databases;
檢視mysql資料庫的表
show tables from mysql;
或者 use mysql; show tables;
檢視當前使用的資料庫
select database();
檢視mysql庫的user表的列
desc mysql.user;
如果當前正在使用mysql庫
desc user;
檢視mysql庫的user表的行
select *from mysql.user;
select *from mysql.user\g;
資料庫,表,列存放位置
show variables like 『datadir』;
show tables from mysql like 『user』
desc mysql.user
select user,host,authentication string from mysql.user;
建立資料庫
create database test;
show databases 顯示當前可以訪問資料庫;
create database test character set 『utf8』 collate 『utf8_general_ci』;
collate:定義字串排序的順序和比較方式
utf_general_ci,字串按照utf8編碼比較大小,不區分大小寫;
ci=case insensitive
刪除資料庫
drop database test;
mysql初體驗之 mysql 常用指令
mysql u p 登陸資料庫 show databases 檢視資料庫狀態 drop database 刪除某個資料庫 create databse 建立某個資料庫 source xx xx.sql 匯入資料庫 use x 使用某個資料庫 select from core config data ...
tar命令初體驗
filename.tar 檔案包 filename.tar.gz 檔案壓縮包 gz代表gzip壓縮格式 filename.tar.表示其他的壓縮格式,可根據不同的壓縮格式,使用不同的壓縮引數,此處以gzip為例,其他格式可如法炮製 常用引數 c 建立包 x 解包 t 列出包中的檔案 v 操作過程中顯...
命令列初體驗
ls 路徑名 顯示此路徑下的檔案 不含隱藏檔案 ls a 路徑名 顯示此路徑下的包含隱藏檔案的所有檔案 cd 進入系統根目錄 cd 返回進入此目錄之前所在的目錄 mkdir 目錄名 建立乙個目錄 mkdir p 遞迴建立多個目錄 mv hello.txt hello2.txt 將檔案hello.tx...