使用 init.d 引导进程启动脚本时有哪些可用的环境变量?

发布于 2024-08-28 02:26:43 字数 514 浏览 11 评论 0原文

我的问题是这样的(操作系统是 Sun Solaris):

  1. At启动时间 我想使用特定脚本启动一个进程。我通过将此脚本放入 /etc/init.d 中(并遵循其他 K 和 S 规则)来完成此操作。

  2. 脚本调用的程序位于$HOME/xxx/yyy位置。

  3. 我正在使用 'su - {myuser} -c "{程序的完整路径}"' 来以 {myuser} 身份执行脚本。

  4. 我不想在脚本中硬编码 $HOME 的值,但我只想使用 $HOME 环境变量。如何在 shell 脚本中获取这个 $HOME 环境变量?还有哪些其他变量可供我使用?

My problem is like this (OS is Sun Solaris):

  1. At the boot time I want to start a process using a specific script. I am doing this by putting this script in /etc/init.d (and following other K and S rules).

  2. The program which will be called by the script is located at $HOME/xxx/yyy location.

  3. I am using 'su - {myuser} -c "{full path of the program}"' in order to execute the script as {myuser}.

  4. I don't want to hardcode the value of $HOME in the script, but I want to use the $HOME environment variable only. How can I get this $HOME environment variable in the shell script? Also what other variables will be available to me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

梦里°也失望 2024-09-04 02:26:43

只需放入

env > env.txt

脚本即可。运行脚本后,env.txt 文件包含所有环境变量。

Just put

env > env.txt

in the script. After running your script the env.txt file contains all environment variables.

百思不得你姐 2024-09-04 02:26:43

要获取任何用户的 home 变量,请尝试以下技巧:

HOME=`sudo -u myuser -s "cd ~; pwd"`

To get the home variable of any user, try this hack:

HOME=`sudo -u myuser -s "cd ~; pwd"`
吃→可爱长大的 2024-09-04 02:26:43

2) 哪个用户的$HOME? root 的 $HOME 或 myuser 的 $HOME

如果是 myuser 的 home,则只需在子脚本中使用 $HOME,而不要在 init.d 脚本中使用它。这将由您正在启动的 shell 进程为您设置。当您执行 su - {myuser} 时,您将指示 su 运行 myuser 的登录 shell(如 /etc/passwd 中所定义)。登录 shell 将根据它是什么 shell 设置默认环境变量。有关详细信息,请参阅 shell 的文档。在 Solaris 上,这可能是 ksh 或 bourne shell。

3)执行su - myuser -c /usr/bin/env。这将打印出将在子脚本中设置的环境变量。

2) Which user's $HOME? root's $HOME or myuser's $HOME

If it's myuser's home, just use $HOME in the child script, and don't use it in the init.d script. This will be set for you by the shell process you are starting. When you do su - {myuser} you are instructing su to run myuser's login shell (as defined in /etc/passwd). The login shell will set the default environment variables based on what shell it is. See your shell's documentation for details. On Solaris this is probably ksh or bourne shell.

3) Do su - myuser -c /usr/bin/env. That will print out the environment variables that will be set in the child script.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文