Environment-Variables

CentOS 環境變數文件在哪裡

  • January 19, 2016

我在哪裡可以找到 CentOS 中的 envvars 配置文件(如果有的話)?

我知道在 Ubuntu、Apache2 中,我可以從/etc/apache2/envvars

我試過這個命令,

export EXAMPLE=value命令。是否需要重新啟動伺服器才能受到影響?

請指教,提前謝謝:)

全域環境變數文件是:-/etc/profile

本地環境變數(使用者特定)文件是:-~/.bash_profile

Rehdat 相當於 /etc/apache2/envvars

Redhat 和 Centos 相當於 /etc/apache2/envvars 是/etc/sysconfig/httpd

如果您認為變數是真正的全域變數,那麼其他答案也是正確的。使用/etc/sysconfig/httpd會將變數限制在 httpd 中。

正如Siddharth sharma指出的那樣,您還可以在 apache 配置中設置環境變數。

例如

SetEnv TMPDIR /var/www/.cgitmp

引用自:https://serverfault.com/questions/750155