欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

CentOS中环境变量与配置文件的深入讲解

程序员文章站 2023-08-26 23:21:59
前言 centos的环境变量配置文件体系是一个层级体系,这与其他多用户应用系统配置文件是类似的,有全局的,有用户的,有shell的,另外不同层级有时类似继承关系。 本文...

前言

centos的环境变量配置文件体系是一个层级体系,这与其他多用户应用系统配置文件是类似的,有全局的,有用户的,有shell的,另外不同层级有时类似继承关系。

本文将详细介绍关于centos环境变量与配置文件的相关内容,下面话不多说了,来一起看看详细的介绍吧

什么是环境变量

bash shell用一个叫做 环境变量(environment variable) 的特性来存储有关shell会话和工作环境的信息。即允许在内存中存储数据,使得在程序或shell中运行的脚本能够访问它们。

在bash shell中,环境变量分为两类:

  • 全局变量
  • 局部变量

全局环境变量

全局环境变量对于shell会话和所有生成的子shell都是可见的。局部变量则只对创建它们的shell可见。

查看全局变量,可以使用env或printenv命令。

[root@dev ~]# env
hostname=localhost
term=linux
shell=/bin/bash
histsize=1000
ssh_client=10.0.100.17 56344 22
ssh_tty=/dev/pts/0
user=root


[root@dev ~]# 
[root@dev ~]# printenv
hostname=localhost
term=linux
shell=/bin/bash
histsize=1000
ssh_client=10.0.100.17 56344 22
ssh_tty=/dev/pts/0
user=root


[root@dev ~]# printenv term
linux

使用环境变量,通过 $ +变量名。

[root@dev ~]# echo $home
/root

系统环境变量基本上都是使用大写字母,以区别于普通用户的环境变量。

局部环境变量

顾名思义,局部环境变量只能在定义它们的进程中可见。set命令会显示某个特定进程设置的所有环境变量,包括局部变量、全局变量以及用户定义变量。

[root@dev ~]# set
bash=/bin/bash
bashopts=checkwinsize:cmdhist:expand_aliases:extquote:force_fignore:hostcomplete:interactive_comments:login_shell:progcomp:promptvars:sourcepath
bash_aliases=()
bash_argc=()
bash_argv=()
bash_cmds=()
bash_lineno=()
bash_source=()
bash_versinfo=([0]="4" [1]="1" [2]="2" [3]="1" [4]="release" [5]="x86_64-redhat-linux-gnu")
bash_version='4.1.2(1)-release'
colors=/etc/dir_colors
columns=165

用户定义变量

一旦启动了bash shell,就能创建在这个shell进程内可见的局部变量。该进程创建的子shell无法读取父shell的局部变量。

[root@dev shell]# sh a.sh

2
22
2
[root@dev shell]# cat a.sh
#!/bin/bash

a=1;
export b=2;

sh b.sh

echo $b;


[root@dev shell]# cat b.sh
#!/bin/bash

echo $a;
echo $b;
b=22;
echo $b;
[root@dev shell]# sh a.sh 

2
22
2

用户可以通过export变量,使变量变为全局变量,这样子shell也可以读取到。而子shell修改该变量,父shell中不受影响。

如果在子shell中设置环境变量,想要在父shell中读取呢?

一个使用场景是:多个执行脚本依赖于共同的环境配置,这个配置写在一个env.sh脚本里,如何使其他执行脚本可以读取到env.sh里变量?在子shell中export变量,并不能影响到父shell。

source命令(从 c shell 而来)是bash shell的内置命令。点命令,就是一个点符号,(从bourne shell而来)是source的另一名称。这两个命令都以一个脚本为参数,该脚本将作为当前shell的环境执行,即不会启动一个新的子进程。所有在脚本中设置的变量将成为当前shell的一部分。

[root@dev shell]# cat c.sh
. ./env.sh
source ./profile.sh

echo $env;
echo $profile;
[root@dev shell]# cat env.sh
env='test';
[root@dev shell]# cat profile.sh 
profile="dev";
[root@dev shell]# sh c.sh 
test
dev

如果想要删除环境变量

unset var_name

设置全局环境变量

上文中,可以知道,如果想要在本进程和子进程中使用共同的环境变量。通过source命令去读取同一个环境变量脚本可以实现。这是用户自定义的方案。但很多时候,我们需要读取的全局环境变量并不知道source,所以需要一个默认的环境变量读取文件。

当你登录linux系统时,bash shell会作为登录shell启动。登录shell会从5个不同的启动文件里读取

  • /etc/profile
  • $home/.bash_profile
  • $home/.bashrc
  • $home/.bash_login
  • $home/.profile

/etc/profile

/etc/profile文件是bash shell默认的主启动文件。只要你登录了linux系统,bash就会执行/etc/profile启动文件的命令。

[root@dev shell]# cat /etc/profile
# /etc/profile

# system wide environment and startup programs, for login setup
# functions and aliases go in /etc/bashrc

# 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.

pathmunge () {
 case ":${path}:" in
  *:"$1":*)
   ;;
  *)
   if [ "$2" = "after" ] ; then
    path=$path:$1
   else
    path=$1:$path
   fi
 esac
}


if [ -x /usr/bin/id ]; then
 if [ -z "$euid" ]; then
  # ksh workaround
  euid=`id -u`
  uid=`id -ru`
 fi
 user="`id -un`"
 logname=$user
 mail="/var/spool/mail/$user"
fi

# path manipulation
if [ "$euid" = "0" ]; then
 pathmunge /sbin
 pathmunge /usr/sbin
 pathmunge /usr/local/sbin
else
 pathmunge /usr/local/sbin after
 pathmunge /usr/sbin after
 pathmunge /sbin after
fi

hostname=`/bin/hostname 2>/dev/null`
histsize=1000
if [ "$histcontrol" = "ignorespace" ] ; then
 export histcontrol=ignoreboth
else
 export histcontrol=ignoredups
fi

export path user logname mail hostname histsize histcontrol

# by default, we want umask to get set. this sets it for login shell
# current threshold for system reserved uid/gids is 200
# you could check uidgid reservation validity in
# /usr/share/doc/setup-*/uidgid file
if [ $uid -gt 199 ] && [ "`id -gn`" = "`id -un`" ]; then
 umask 002
else
 umask 022
fi

for i in /etc/profile.d/*.sh ; do
 if [ -r "$i" ]; then
  if [ "${-#*i}" != "$-" ]; then
   . "$i"
  else
   . "$i" >/dev/null 2>&1
  fi
 fi
done

unset i
unset -f pathmunge

该文件会读取/etc/profile.d/下所有的*.sh文件,通过点命令(source)来加载变量。即在/etc/profile和/etc/profile.d/*.sh定义的变量,都是全局的系统环境变量。

$home/.bash_profile

$home下的启动文件都是用户专属的启动文件,定义该用户的环境变量。而/etc/profile则是系统的,所有用户的环境变量。

shell会按照下列顺序,运行第一个找到的文件,余下被忽略:

  • $home/.bash_profile
  • $home/.bash_login
  • $home/.profile

.bashrc通过.bash_profile来调用。

[root@dev shell]# cat ~/.bash_profile 
# .bash_profile

# get the aliases and functions
if [ -f ~/.bashrc ]; then
  . ~/.bashrc
fi

# user specific environment and startup programs

path=$path:$home/bin

export path

总结:

将要设置的系统全局环境变量,比如java_home,放在/etc/profile.d/目录下, 以*.sh脚本的形式定义。

好了,以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。