參考:
變數的問題,就再次更新.bashrc檔案,結果確實是這個問題。
解決方案:
1.每次登入是都更新一次環境變數檔案
2.設定.profile檔案
vim ~/.profile
更改內容:
# if running bash
if [ -n "$bash_version" ]; then
# include .bashrc if it exists
if [ -f "$home/.bashrc" ]; then
. "$home/.bashrc"
fifi
# set path so it includes user's private bin if it exists
if [ -d "$home/bin" ] ; then
path="$home/bin:$path"
fi
使系統在登入伺服器時的基本配置檔案讀取流程是下面這樣
execute /etc/profile
if ~/.bash_profile exists then
execute ~/.bash_profile
else
if ~/.bash_login exist then
execute ~/.bash_login
else
if ~/.profile exist then
execute ~/.profile
end if
end if
end if
裡面**讓系統幫我們讀取使用者下的.bashrc,這樣我們就不用每次登陸後自己去執行了 ipmitool 命令列重啟伺服器
我們所有得伺服器都有乙個console 口,當伺服器到了機房後,我們只需要將這個console 口連上線放通網路,我們就可以實現遠端管理這台server 不需要頻繁得去機房操作,這個console ip 也被叫為bmc ip 我們重啟server 我知道得是有三種方式 1.機房物理重啟 2.cons...
伺服器 命令列編輯檔案(二)
我們需要操作 cd usr local 操作進入我的伺服器檔案裡面了。1 刪除檔案 rm rf 檔名稱 ssh 使用者名稱 伺服器位址 tar cz usr local src tar xzv 3 將 home src 目錄下面的所有檔案,複製到遠端主機的 home src 目錄。tar czv s...
伺服器命令列常用的指令
1.進入伺服器 ssh p xx 埠號 202.119.84.91 使用者名稱 ip位址 2.檢視當前所在路徑裡包含的檔案 ls3.查詢絕對路徑 pwd4.編輯乙個python檔案 1.開啟檔案 vim demo.py 2.編輯 輸 i3.終止 輸 esc 4.儲存並退出 輸 wq 最後enter ...