執行sh格式(linux批處理檔案)的檔案:sh shfilename.sh
mysql資料庫:
進入mysql資料庫:/mysql安裝目錄/bin/mysql
顯示所有資料庫:show databases
進入某個資料庫:use databasename
顯示某個資料庫下所有表:show tables
設定ip訪問許可權和使用者: grant all privileges on databasename.* to
'username'@'ip位址' identified by '使用者密碼';
為系統建立乙個使用者:/usr/sbin/useradd username
修改乙個使用者的密碼:/usr/bin/passwd username
重啟apache伺服器:/apache安裝目錄/bin/apachectl restart
重啟tomcat伺服器:(先關閉伺服器)sh /tomcat安裝目錄/bin/shutdown.sh (再啟動伺服器)sh /tomcat安裝目錄/bin/startup.sh
使編輯顯示行數-->:set nu
進入修改狀態-->大寫的「i」(shift+i)
退出不儲存-->:q!
儲存並退出-->:wq
瀏覽檔案:cat filename.filetype
2023年04月30日記
Linux 檢視磁碟的幾個簡單命令
centos檢視系統資訊 檢視磁碟占用情況 df hl 檢視每個資料夾占用情況 du sh 檢視每個應用運 況 top一 檢視cpu more proc cpuinfo grep model name grep model name proc cpuinfo grep model name proc...
Linux效能監控 幾個簡單的sar命令
簡介 sar system activity reporter 是系統活動情況報告的縮寫。sar 工具將對系統當前的狀態進行取樣,然後通過計算資料和比例來表達系統的當前執行狀態。它的特點是可以連續對系統取樣,獲得大量的取樣資料 取樣資料和分析的結果都可以存入檔案,所需的負載很小。sar 是目前 li...
Linux的幾個命令
1。linux下要刪除非空目錄 rm rf 目錄名 2。linux下複製遠端檔案到本地 scp oneuser 192.168.1.12 abc myfile.tar mytest 用oneuser使用者登入遠端機器,把192.168.1.12上abc資料夾的myfile.tar複製到本地的 myt...