maraidb 命令補充

2022-08-21 04:45:17 字數 477 閱讀 8165

10.3 版本

mysql 忘記root 密碼

# vim /etc/my.cnf.d/server.conf 進入配置檔案新增 #skip -grant-tables 免密登入

# mysql -uroot -p 登入mysql資料庫

# mysql_secure_installation 設定密碼

# show databases;檢視資料庫

# show create database 庫名  檢視狀態

# use 庫名 顯示那個資料庫

# create database 庫名  建立資料庫

# drop database 庫名 刪除資料庫

# select user (); 檢視當前使用者

# show grants for "庫名" 檢視許可權

# grant all privileges on *.* to 庫名@『%』; 設定最高許可權 %支援第三方軟體

shell命令補充

使用者管理 使用者身份 whoami 檢視登陸使用者 who a h 檢視使用者的操作 w 使用者間切換 su username 目錄管理 建立目錄 mkdir directoryname 刪除目錄 rmdir directoryname 顯示工作目錄 pwd 顯示目錄內容 ls a l 改變當前目...

gvim 命令補充

刪除沒有內容的空行 g d 刪除包含有空格組成的空行 g s d 以空格或tab開頭到結尾的空行 g t d s r g 刪除dos方式的回車 m s 刪除行尾空白 s n1 1 刪除重複行 s pdf new.pdf 只是刪除第乙個pdf s 又是刪除多行注釋 咦?為什麼要說 又 呢?g s d ...

mysql命令補充

1.mysql修改字段允許為空 alter table表名 modify欄位名字段型別 長度 null 1.新增普通索引 alter table table name add index index name column list 2.新增唯一索引 alter table table name a...