文章目錄
修改密碼
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