5

I do rails development. In this app, I need to specify the environment variable LD_LIBRARY_PATH = /usr/local/oracle/lib, but when I run the app with sudo script/server, it doesn't run because that library path is not in root's env.

What should I do to make it work? I tried to put the path under root ./bashrc and it didn't work.

Paul T.
  • 119
  • 6

8 Answers8

6

I had a similar problem. I looked in my /etc/sudoers file and I saw these lines:

Defaults    env_reset
Defaults    env_keep = "COLORS DISPLAY HOSTNAME HISTSIZE INPUTRC KDEDIR \
                        LS_COLORS MAIL PS1 PS2 QTDIR USERNAME \
                        LANG LC_ADDRESS LC_CTYPE LC_COLLATE LC_IDENTIFICATION \
                        LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC \
                        LC_PAPER LC_TELEPHONE LC_TIME LC_ALL LANGUAGE LINGUAS \
                        _XKB_CHARSET XAUTHORITY"

To get my environment variable to be there I had to add its name after "XAUTHORITY". In your case you would have:

Defaults    env_keep = "COLORS DISPLAY HOSTNAME HISTSIZE INPUTRC KDEDIR \
                        LS_COLORS MAIL PS1 PS2 QTDIR USERNAME \
                        LANG LC_ADDRESS LC_CTYPE LC_COLLATE LC_IDENTIFICATION \
                        LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC \
                        LC_PAPER LC_TELEPHONE LC_TIME LC_ALL LANGUAGE LINGUAS \
                        _XKB_CHARSET XAUTHORITY LD_LIBRARY_PATH"

Give that a try.

Also make sure that you set BASH_ENV="~/.bashrc" in /etc/environment.

See this other answer for more details

Fab
  • 61
2

The way you've reached your root user matters here. Different methods for "logging in" create different environments.

For example:

  • If bash is your root shell, it will read .bashrc upon startup
  • If bash is your root shell, and it is a "login" shell, it will read .bash_profile upon startup
  • If you are logging in via ssh, it will use .ssh/environment as well
  • If you are logging in via login, that is from the console, /etc/pam.d/login will use pam_env.so to read /etc/security/pam_env.conf (depending on the distro) and /etc/environment (if there is readenv=1) on the command line
  • etc.

So, if you are not getting the environment you want - you need to figure out the chain of logins that is leading you to the software you are starting. This might be something like: gdm (X) login -> terminal emulator -> bash shell -> su -> bash shell (root) -> software.

However, if you just want to take the best guess, /etc/environment should be read for every process in a recent distributions.

Nakedible
  • 307
1

Crazy idea, but are you sure that the server actually runs as root? Some servers specify an account that they run under, so even though you invoke the start script as root they are actually running as another user.

0

There are ways to add it to your script, but I would suggest an easier, more robust approach would be to add the path to the config for the dynamic linker directly:

$ sudo editor /etc/ld.so.conf.d/railslibs

Add the path you mention in your question to that file and run sudo ldconfig.

That should make an env munging unnecessary.

Insyte
  • 9,554
0

There are a number of ways to do this, including the one Insyte suggests above.

If, however, you need to set an environment variable that doesn't belong in /etc/ld.so.conf, you could also simply put it in /etc/environment

DictatorBob
  • 1,654
0

If this is a redhat-family distro:

echo 'export LD_LIBRARY_PATH=/usr/local/oracle/lib' > /etc/profile.d/oracle
cagenut
  • 4,868
0

Have you tried this:

sudo su - root -c "LD_LIBRARY_PATH=/usr/local/oracle/lib <command to start the app>"

Note that there is no semicolon between setting the environment variable and running the command.

0

You could try setting the environment variable from within the rails process try adding something like below in $RAILS_ROOT/config/environment.rb

Rails::Initializer.run do |config|
   ENV['LD_LIBRARY_PATH'] = "/usr/local/oracle_client/v8_1_7/lib"
end

you probably need to make sure this gets set before you add the require or gem statements for you oracle database bindings.

kisoku
  • 149