4 一些查詢命令

2021-08-15 21:59:51 字數 524 閱讀 6195

1、檢視埠號狀態

# netstat -ntlp // 檢視所有的tcp埠;

#netstat -ntlp | grep 80 //檢視所有80埠的使用情況

2、檢視防火牆狀態

#service iptables status

重啟後生效:開啟:

#chkconfig iptables on,關閉:# chkconfig iptables off

即時生效,重啟後生效:開啟:service iptables start,關閉:service iptables stop

3、檢查是否安裝過mongodb

rpm -qa | grep mongodb 

4、檢視使用者單一程序最大檔案開啟數

ulimit -n

5、獲取系統的所有 tcp/udp sockets使用情況以及建立的ssh/ftp/http 等連線情況

一些linux查詢命令

1.從檔案內容查詢匹配指定字元專串的行 grep 被查屬找的字串 檔名 2.從檔案內容查詢與正規表示式匹配的行 grep e 正規表示式 檔名 3.查詢時不區分大小寫 grep i 被查詢的字串 檔名 4.查詢匹配的行數 grep c 被查詢的字串 檔名 5.從檔案內容查詢不匹配指定字串的行 gre...

一些linux命令

rpm ql mplayer cat n檢視軟體包資訊 另外補充下 root centos5h wc help 用法 wc 選項 檔案 print newline,word,and byte counts for each file,and a total line if more than one...

oracle sqlplus一些命令

1.預設賬戶scott的解鎖 cmd命令列下輸入sqlplus,在 請輸入使用者名稱 後面輸入命令 conn sys sys as sysdba 用超級管理員 登入 解鎖scott alter user scott account unlock 2.顯示當前使用者 show user 3.切換使用者...