Linux的环境变量不生效

一、定时任务无法加载系统的环境变量

系统环境变量生效顺序:

复制代码
1.首先读入的是全局环境变量设定目录/etc/profile,然后根据其内容读取额外的设定的文档,如 /etc/profile.d和/etc/inputrc

2.然后去用户家目录下,读取~/.bash_profile,否则读取~/.bash_login,再否则~/.profile,这三个文档设定基本上是一样的,存在读取优先关系

3.然后再去用户家目录下,读取~/.bashrc
1、linux配置定时任务的用户环境变量

在Linux系统中,执行定时任务时,默认加载的是用户环境变量 ~/.bashrc ,不会加载系统变量,而要使用系统变量,可以用如下方式:

# Example of job definition:
# .---------------- minute (0 - 59)
# |  .------------- hour (0 - 23)
# |  |  .---------- day of month (1 - 31)
# |  |  |  .------- month (1 - 12) OR jan,feb,mar,apr ...
# |  |  |  |  .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# |  |  |  |  |
# *  *  *  *  * user-name  command to be executed

*/1  *  *  *  * root /root/xx.sh                           # 使用用户环境变量
*/1  *  *  *  * root source ~/.bashrc &&  /root/xx.sh      # 使用用户环境变量

*/1  *  *  *  * root source /etc/profile &&  /root/xx.sh   # 使用系统环境变量

在以上的配置中,定时任务只是默认加载当前用户的环境变量,即 所有的定时任务,默认使用 source ~/.bashrc 来加载执行后续命令的。

如果要加载 系统环境变量,则需指定加载系统变量文件,即 source /etc/profile 这段命令。 && 符号意思就是执行多个命令,这里是先加载系统环境变量,然后再执行 /root/xx.sh的命令。

二、Linux系统环境变量

1、现象:每次登陆系统时,都需要source /etc/profile

Linux每次进入都需要 source /etc/profile才能使用java命令,需要配置永久环境变量,修改etc目录下的bashrc文件,在最前面添加

export JAVA_HOME=/usr/lib/jvm/jdk1.8.0_161 
export PATH=$PATH:$JAVA_HOME/bin
export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
相关推荐
D-海漠14 分钟前
基础自动化系统的任务
运维·自动化
originalHSL18 分钟前
Load-Balanced-Online-OJ(负载均衡式在线OJ)
linux·c++·git·vscode·http·https·json
mit6.8241 小时前
[Redis#0] iredis: linux上redis超好用的环境配置
linux·redis·后端
陌小呆^O^1 小时前
Cmakelist.txt之Linux-redis配置
linux·运维·redis
ernesto_ji1 小时前
Linux中,防火墙基本操作指令
linux·运维·网络
丶Darling.2 小时前
MIT 6.S081 | 操作系统 | Lab1: Xv6 and Unix utilities
linux·服务器·c语言·操作系统·unix·lab·mit 6.s081
Burfitt.Lee2 小时前
Linux:confluence8.5.9的部署(下载+安装+pojie)离线部署全流程 遇到的问题
linux·运维·服务器
vvw&2 小时前
使用 Nginx 在 Ubuntu 22.04 上安装 LibreNMS 开源网络监控系统
linux·运维·服务器·nginx·ubuntu·github·librenms
运维&陈同学2 小时前
【zookeeper02】消息队列与微服务之zookeeper单机部署
linux·服务器·分布式·微服务·zookeeper·云原生·消息队列·云计算
与君共勉121383 小时前
Jenkins-Git Parameter 插件实现指定版本的发布和回滚
linux·服务器·gitlab·jenkins