Linux命令列
方法一:
建立全域性可執行指令
ln -s /home/可執行檔案 /usr/local/bin/重新命名
-----------兩個都必須是絕對路徑;
服務開機自啟動:--------前提:新增全域性可執行指令
chkconfig 服務名 on
若想關閉,將on改為off
方法二:
建立全域性可執行指令————修改.bash_profile檔案
[root@root ~]# vi /root/.bash_profile
在修改PATH=$PATH:$HOME/bin為:
PATH=$PATH:$HOME/bin:/usr/local/mysql/bin:/usr/local/mysql/lib //冒號分隔路徑;
[root@root ~]# source /root/.bash_profile //使剛才的修改生效
服務開機自啟動:
cp /home/可執行檔案 /etc/init.d/重新命名
例如Mysql:
cp support-files/mysql.server /etc/init.d/mysql-server
例如Apache:
cp apache/bin/apachectl /etc/init.d/apache
報錯:service apache does not support chkconfig
需要在/etc/init.d/apache內新增chkconfig和description
# chkconfig: - 85 15
# description: nginx is a World Wide Web server. It is used to serve
命令雜項:
free -h
--------檢視剩餘記憶體和swap
ip -s link 或 ip -h link 或 ip -s addr 或 ip -h addr
--------檢視ip
url
uri
如果需要自啟動某些服務,只需使用chkconfig 服務名 on即可,若想關閉,將on改為off
Node內建模組:
http--------建立伺服器
url---------對網路請求地址進行處理
path--------對伺服器檔案路徑進行處理
fs----------對伺服器檔案進行處理
Nginx:
/root/vhost.sh xxx.com-----------新增域名(www和不帶的都繫結)
nginx -s reload------------重啟nginx