우분투 18.04를 사용하고 있습니다. /etc/profile 파일에 일련의 환경 변수를 정의했습니다. 내 사용자로 로그인하면 그들이 사용하는 것을 볼 수 있습니다
$ echo $DB_NAME
directory_data
내 컴퓨터는 또한 www-data 사용자(홈 디렉터리 없음)로 Apache 2.4를 실행하고 있습니다. "PassEnv"를 사용하여 Apache 구성을 설정했습니다(https://httpd.apache.org/docs/2.4/mod/mod_env.html), 내 환경 변수를 얻을 수 있기를 바랍니다 ...
$ cat /etc/apache2/sites-available/000-default.conf
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
ServerName my.server.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/web
PassEnv DB_NAME
PassEnv DB_USER
PassEnv DB_PASS
PassEnv DB_SERVICE
PassEnv DB_PORT
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
LogLevel info
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
AliasMatch ^/(?!phpmyadmin)(?!states/)(?!countries/)(?!coops/)(?!data).* /var/www/html/client/build/$0
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
Include conf-available/phpmyadmin.conf
WSGIDaemonProcess maps \
home=/var/www/html/web python-home=/var/www/html/web/venv
WSGIProcessGroup maps
WSGIScriptAlias /coops /var/www/html/web/directory/wsgi.py/coops process-group=maps
WSGIScriptAlias /data /var/www/html/web/directory/wsgi.py/data process-group=maps
WSGIScriptAlias /countries /var/www/html/web/directory/wsgi.py/countries process-group=maps
WSGIScriptAlias /states /var/www/html/web/directory/wsgi.py/states process-group=maps
WSGIPassAuthorization On
<Directory /var/www/html/web/maps>
<Files wsgi.py>
Require all granted
</Files>
</Directory>
</VirtualHost>
Apache는 WSGI를 사용하여 Python에 연결합니다. 여기서 저는 궁극적으로 환경 변수를 참조하려고 합니다. 이것은 내 Python 파일인 settings.py입니다.
DATABASES = {
'default': {,
'ENGINE': 'django.db.backends.mysql',
'NAME': os.environ['DB_NAME'],
'USER': os.environ['DB_USER'],
'PASSWORD': os.environ['DB_PASS'],
'HOST': os.environ['DB_SERVICE'],
'PORT': os.environ['DB_PORT']
}
}
그러나 환경 변수는 얻어지지 않습니다.
[Thu Jun 25 17:29:28.870247 2020] [wsgi:error] [pid 11363] File "/var/www/html/web/directory/settings.py", line 93, in <module>
[Thu Jun 25 17:29:28.870319 2020] [wsgi:error] [pid 11363] 'NAME': os.environ['DB_NAME'],
[Thu Jun 25 17:29:28.870408 2020] [wsgi:error] [pid 11363] File "/usr/lib/python3.6/os.py", line 669, in __getitem__
[Thu Jun 25 17:29:28.870474 2020] [wsgi:error] [pid 11363] raise KeyError(key) from None
[Thu Jun 25 17:29:28.870564 2020] [wsgi:error] [pid 11363] KeyError: 'DB_NAME'
Apache 프로세스에서 인식할 수 있도록 환경 변수는 일반적으로 어디에 배치됩니까?
답변1
systemd를 사용하여 18.04를 새로 설치하고 있다고 가정합니까? 시간이 지남에 따라 운영 체제를 업데이트한 경우 일부 구성 요소(예: systemd)가 재고 18.04와 약간 다를 수 있습니다.
/lib/systemd/system/apache2.service에서 필수 변수에 대한 Environment= 문을 [Service] 섹션에 추가합니다. 따옴표를 사용하지 마세요. 예:
[Service]
Type=forking
Environment=APACHE_STARTED_BY_SYSTEMD=true
Environment=DB_SERVICE=localhost
ExecStart=/usr/sbin/apachectl start
...
설명하는 PassEnv 섹션과 함께 이 작업을 수행해야 합니다.
아파치 다시 시작
$ sudo systemctl restart apache2
변경된 설정 가져오기