Linux常用命令 (包含Apache, MySQL)

來源:互聯網
上載者:User
文章目錄
  •  修改密碼
  • 網卡添加IP地址
  • 重啟
  • Apache
 修改密碼
passwd root
網卡添加IP地址
ifconfig eth0:1 184.82.167.219 netmask 255.255.255.248ifconfig eth0:2 184.82.167.220 netmask 255.255.255.248
重啟
rebotshutdown -r now     #立刻重啟(root使用者使用)shutdown -r 10      #過10分鐘自動重啟(root使用者使用)shutdown -r 20:35   #在時間為20:35時候重啟(root使用者使用)

如果是通過shutdown命令設定重啟的話,可以用shutdown -c命令取消重啟

關機
halt                #立刻關機poweroff            #立刻關機shutdown -h now     #立刻關機(root使用者使用)shutdown -h 10      #10分鐘後自動關機
Apache
service httpd startapachectl -vapachectl startapachectl stopapachectl restart

/etc/httpd/conf/extra

/var/log/httpd/

tail /etc/httpd/logs/access_logtail -f /etc/httpd/logs/access_logcat /etc/httpd/logs/access_log|awk '{print $1}'|sort|uniq -c|sort -nr|lesscat /etc/httpd/logs/access_log|grep '02/Apr/2012'|awk '{print $1}'|sort|uniq -c|sort -nr|lessnetstat -n|grep tcp |wc -lnetstat -n|grep udp |wc -lps -aux|grep httpd|wc -lps -ef|grep httpd|wc -lnetstat -n | awk '/^tcp/ {++S[$NF]} END {for (a in S) print a, S[a]}'

同時在查資料的過程中,揀到一條命令:

netstat -n | awk '/^tcp/ {++S[$NF]} END {for (a in S) print a, S[a]}'

這條語句返回結果如下

LAST_ACK 5SYN_RECV 30ESTABLISHED 1597FIN_WAIT1 51FIN_WAIT2 504TIME_WAIT 1057

其中的SYN_RECV表示正在等待處理的請求數;ESTABLISHED表示正常資料轉送狀態;TIME_WAIT表示處理完畢,等待逾時結束的請求數。 返回的結果非常簡潔直接,就是句子有點長 -_-

禁止IP訪問
RewriteCond %{HTTP_HOST} !^www.abc.com [NC]RewriteCond %{HTTP_HOST} !^abc.com [NC]RewriteRule (.*) http://127.0.0.1 [R=301,L]
MySQL

啟動 /etc/rc.d/init.d/mysqld start

重啟 /etc/rc.d/init.d/mysqld restart

停止 /etc/rc.d/init.d/mysqld stop

service mysqld start
netstat -n|grep 'mysql.sock'|wc -l

 

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.