在/etc/profile文件中添加变量,将会对Linux下所有用户有效,并且是“永久的”。
[root@localhost ~]# vi /etc/profile
[root@localhost ~]# source /etc/profile
注:修改文件后要想马上生效还要运行 source /etc/profile 不然只能在下次重进此用户时生效。
2、在用户目录下的.bash_profile文件中增加变量,改变量仅会对当前用户有效,并且是“永久的”。
切换用户,直接 vi ; 或者 cd 到 /home 下特定用户的目录下找到 .bash_profile 进行修改。
[root@localhost ~]# su - postgres
上一次登录:二 5月 24 08:57:32 CST 2022pts/2 上
-bash-4.2$ vi .bash_profile
注:修改文件后要想马上生效还要运行 source .bash_profile不然只能在下次重进此用户时生效。