1.#PATH=$PATH:/opt/lamp/mysql/bin
使用這種方法,只對當前會話有效,也就是說每當登出或註銷系統之後,PATH 設置就會失效mysql
2.#vi /etc/profile
在適當位置添加 PATH=$PATH:/etc/apache/bin (注意:= 即等號兩邊不能有任何空格)這種方法最好,除非你手動強制修改PATH的值,不然將不會被改變sql
但通常狀況下咱們不直接在這裏面修改,在/etc/profile開頭有這樣的提示:shell
# It's NOT a good idea to change this file unless you know what you
# are doing. It's much better to create a custom.sh shell script in
# /etc/profile.d/ to make custom changes to your environment, as this
# will prevent the need for merging in future updates.apache
因此:添加一個customer.sh文本文件到 /etc/profile.d/目錄下,打開它並敲入bash
3.#vi ~/.bash_profile
修改PATH行,把/opt/lamp/mysql/bin添加進去這種方法是針對用戶起做用的less
注意:想改變PATH,必須從新登錄才能生效,如下方法能夠簡化工做:ide
若是修改了/etc/profile,那麼編輯結束後執行source profile 或 執行點命令 ./profile,PATH的值就會當即生效了。這個方法的原理就是再執行一次/etc/profile shell腳本,注意若是用sh /etc/profile是不行的,由於sh是在子shell進程中執行的,即便PATH改變了也不會反應到當前環境中,可是source是在當前 shell進程中執行的,因此咱們能看到PATH的改變。this
通常狀況下在用戶工做目錄下的bin目錄會包含在PATH路徑中,因此只要把用戶本身寫的shell腳本放在用戶的bin目錄下就能夠了,不須要修改配置文件。idea