I'm using zsh
as my shell, and I'm trying to configure my environment.
I usually define my $JAVA_HOME
variable by creating a file:
/etc/profile.d/java.sh
with the following content
export JAVA_HOME=/path/to/jdk
export PATH=$JAVA_HOME/bin:$PATH
then I logout and back in, and it all works, but for some reason the PATH
variable is not set. It recognizes JAVA_HOME
, but not the new PATH
, see this terminal snippet:
~ echo $JAVA_HOME
/usr/lib/jvm/jdk1.8.0_05
~ echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games
and I confirmed it by trying to run a command form the jvm
~ java -version
zsh: command not found: java
the PATH
doesn't include the $JAVA_HOME
as it should. is there something else I should check?
I have checked that if I run:
source /etc/profile.d/java.sh
it all runs correctly and my variables get set as they should, but shouldn't the scripts in /etc/profile.d
run automatically?
From my point of view, the best way is to add the following lines at the
~/.zshrc
file (if you don't already have it, then create it):Then restart your
zsh
, or just runsource ~/.zshrc
and then your PATH should be exactly as you wish.Or, if you want to make the change to be system-wide, then add the previous code to the end of
/etc/zsh/zshenv
file.But in any case do not use
/etc/profile.d
to automatically run scripts inzsh
. This directory is useful only for thebash
shell, notzsh
as in your case. To understand this, open/etc/profile
file, which is a bash initialization file and in no case a zsh initialization file, and you will see somewhere at the end of the file:So, your scripts from
/etc/profile.d
directory will automatically run inzsh
only if you add the previous code in a zsh initialization file, like/etc/zsh/zprofile
for example, or source/etc/profile
in/etc/zsh/zprofile
file.I find that placing everything in one
.zshenv
file quickly becomes hard to manage. I recommend installing oh-my-sh and then placing various customizations (env vars, functions) to the.oh-my-sh/custom/
directory as separate.zsh
files.I also discovered that this approach works flawlessly when ssh'ing into machine when modifying env variables such as
PATH
. Also it works really nice together with vcsh for keeping customizations backed up and in sync.Since
JAVA_HOME
is set, you have confirmed that those scripts are sourced automatically, haven't you?The only logical explanation is that
PATH
is set later on somehow. It should be originally set by PAM which reads/etc/environment
, and as far as I know that happens before/etc/profile.d/*.sh
files are sourced. Possibly zsh works different compared to bash in that respect.Just ran into this issue locally after running updates. Looks like the root issue is Drush doesn't know where to find a legit copy of php that includes pdo. Fortunately it supports stashing this path in an environment variable, so I did this on the commandline:
That fixed the issue so I edited .zshrc and added that to the file, problem solved.