mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2025-06-14 13:57:34 +02:00
Added new configuratio options to Zabbix appliance (RHEL)
This commit is contained in:
parent
62555ae78b
commit
e6e6f2b9cb
@ -203,7 +203,6 @@ RUN set -eux && REPOLIST="rhel-8-for-x86_64-baseos-rpms,rhel-8-for-x86_64-appstr
|
|||||||
chgrp -R 0 /var/lib/mysql/ /var/lib/php/session/ && \
|
chgrp -R 0 /var/lib/mysql/ /var/lib/php/session/ && \
|
||||||
chmod -R g=u /var/lib/mysql/ /var/lib/php/session/ && \
|
chmod -R g=u /var/lib/mysql/ /var/lib/php/session/ && \
|
||||||
dnf -y history undo `dnf history list last -q | sed -n 3p |column -t | cut -d' ' -f1` && \
|
dnf -y history undo `dnf history list last -q | sed -n 3p |column -t | cut -d' ' -f1` && \
|
||||||
dnf -y erase glibc-locale-source glibc-langpack-en && \
|
|
||||||
dnf -y clean all && \
|
dnf -y clean all && \
|
||||||
rm -rf /var/cache/yum /var/lib/yum/yumdb/* /usr/lib/udev/hwdb.d/* && \
|
rm -rf /var/cache/yum /var/lib/yum/yumdb/* /usr/lib/udev/hwdb.d/* && \
|
||||||
rm -rf /var/cache/dnf /etc/udev/hwdb.bin /root/.pki
|
rm -rf /var/cache/dnf /etc/udev/hwdb.bin /root/.pki
|
||||||
|
@ -16,6 +16,10 @@ fi
|
|||||||
# Default timezone for web interface
|
# Default timezone for web interface
|
||||||
: ${PHP_TZ:="Europe/Riga"}
|
: ${PHP_TZ:="Europe/Riga"}
|
||||||
|
|
||||||
|
# Default MySQL instance location
|
||||||
|
: ${DB_SERVER_HOST:="localhost"}
|
||||||
|
: ${DB_SERVER_PORT:="3306"}
|
||||||
|
|
||||||
# Default directories
|
# Default directories
|
||||||
# User 'zabbix' home directory
|
# User 'zabbix' home directory
|
||||||
ZABBIX_USER_HOME_DIR="/var/lib/zabbix"
|
ZABBIX_USER_HOME_DIR="/var/lib/zabbix"
|
||||||
@ -55,6 +59,23 @@ file_env() {
|
|||||||
unset "$fileVar"
|
unset "$fileVar"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
escape_spec_char() {
|
||||||
|
local var_value=$1
|
||||||
|
|
||||||
|
var_value="${var_value//\\/\\\\}"
|
||||||
|
var_value="${var_value//[$'\n']/}"
|
||||||
|
var_value="${var_value//\//\\/}"
|
||||||
|
var_value="${var_value//./\\.}"
|
||||||
|
var_value="${var_value//\*/\\*}"
|
||||||
|
var_value="${var_value//^/\\^}"
|
||||||
|
var_value="${var_value//\$/\\\$}"
|
||||||
|
var_value="${var_value//\&/\\\&}"
|
||||||
|
var_value="${var_value//\[/\\[}"
|
||||||
|
var_value="${var_value//\]/\\]}"
|
||||||
|
|
||||||
|
echo "$var_value"
|
||||||
|
}
|
||||||
|
|
||||||
configure_db_mysql() {
|
configure_db_mysql() {
|
||||||
[ "${DB_SERVER_HOST}" != "localhost" ] && return
|
[ "${DB_SERVER_HOST}" != "localhost" ] && return
|
||||||
|
|
||||||
@ -93,28 +114,9 @@ configure_db_mysql() {
|
|||||||
prepare_system() {
|
prepare_system() {
|
||||||
echo "** Preparing the system"
|
echo "** Preparing the system"
|
||||||
|
|
||||||
DB_SERVER_HOST=${DB_SERVER_HOST:-"localhost"}
|
|
||||||
|
|
||||||
configure_db_mysql
|
configure_db_mysql
|
||||||
}
|
}
|
||||||
|
|
||||||
escape_spec_char() {
|
|
||||||
local var_value=$1
|
|
||||||
|
|
||||||
var_value="${var_value//\\/\\\\}"
|
|
||||||
var_value="${var_value//[$'\n']/}"
|
|
||||||
var_value="${var_value//\//\\/}"
|
|
||||||
var_value="${var_value//./\\.}"
|
|
||||||
var_value="${var_value//\*/\\*}"
|
|
||||||
var_value="${var_value//^/\\^}"
|
|
||||||
var_value="${var_value//\$/\\\$}"
|
|
||||||
var_value="${var_value//\&/\\\&}"
|
|
||||||
var_value="${var_value//\[/\\[}"
|
|
||||||
var_value="${var_value//\]/\\]}"
|
|
||||||
|
|
||||||
echo "$var_value"
|
|
||||||
}
|
|
||||||
|
|
||||||
update_config_var() {
|
update_config_var() {
|
||||||
local config_path=$1
|
local config_path=$1
|
||||||
local var_name=$2
|
local var_name=$2
|
||||||
@ -182,8 +184,6 @@ update_config_multiple_var() {
|
|||||||
|
|
||||||
# Check prerequisites for MySQL database
|
# Check prerequisites for MySQL database
|
||||||
check_variables_mysql() {
|
check_variables_mysql() {
|
||||||
DB_SERVER_HOST=${DB_SERVER_HOST:-"mysql-server"}
|
|
||||||
DB_SERVER_PORT=${DB_SERVER_PORT:-"3306"}
|
|
||||||
USE_DB_ROOT_USER=false
|
USE_DB_ROOT_USER=false
|
||||||
CREATE_ZBX_DB_USER=false
|
CREATE_ZBX_DB_USER=false
|
||||||
file_env MYSQL_USER
|
file_env MYSQL_USER
|
||||||
@ -338,10 +338,6 @@ prepare_web_server() {
|
|||||||
else
|
else
|
||||||
echo "**** Impossible to enable SSL support for Nginx. Certificates are missed."
|
echo "**** Impossible to enable SSL support for Nginx. Certificates are missed."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -d "/var/log/nginx/" ]; then
|
|
||||||
ln -sf /dev/fd/2 /var/log/nginx/error.log
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
stop_databases() {
|
stop_databases() {
|
||||||
@ -480,6 +476,12 @@ update_zbx_config() {
|
|||||||
update_config_var $ZBX_CONFIG "TLSCRLFile" "${ZBX_TLSCRLFILE}"
|
update_config_var $ZBX_CONFIG "TLSCRLFile" "${ZBX_TLSCRLFILE}"
|
||||||
|
|
||||||
update_config_var $ZBX_CONFIG "TLSCertFile" "${ZBX_TLSCERTFILE}"
|
update_config_var $ZBX_CONFIG "TLSCertFile" "${ZBX_TLSCERTFILE}"
|
||||||
|
update_config_var $ZBX_CONFIG "TLSCipherAll" "${ZBX_TLSCIPHERALL}"
|
||||||
|
update_config_var $ZBX_CONFIG "TLSCipherAll13" "${ZBX_TLSCIPHERALL13}"
|
||||||
|
update_config_var $ZBX_CONFIG "TLSCipherCert" "${ZBX_TLSCIPHERCERT}"
|
||||||
|
update_config_var $ZBX_CONFIG "TLSCipherCert13" "${ZBX_TLSCIPHERCERT13}"
|
||||||
|
update_config_var $ZBX_CONFIG "TLSCipherPSK" "${ZBX_TLSCIPHERPSK}"
|
||||||
|
update_config_var $ZBX_CONFIG "TLSCipherPSK13" "${ZBX_TLSCIPHERPSK13}"
|
||||||
update_config_var $ZBX_CONFIG "TLSKeyFile" "${ZBX_TLSKEYFILE}"
|
update_config_var $ZBX_CONFIG "TLSKeyFile" "${ZBX_TLSKEYFILE}"
|
||||||
|
|
||||||
update_config_var $ZBX_CONFIG "TLSPSKIdentity" "${ZBX_TLSPSKIDENTITY}"
|
update_config_var $ZBX_CONFIG "TLSPSKIdentity" "${ZBX_TLSPSKIDENTITY}"
|
||||||
@ -526,6 +528,10 @@ prepare_zbx_web_config() {
|
|||||||
history_storage_url=$(escape_spec_char "${ZBX_HISTORYSTORAGEURL}")
|
history_storage_url=$(escape_spec_char "${ZBX_HISTORYSTORAGEURL}")
|
||||||
history_storage_types=$(escape_spec_char "${ZBX_HISTORYSTORAGETYPES}")
|
history_storage_types=$(escape_spec_char "${ZBX_HISTORYSTORAGETYPES}")
|
||||||
|
|
||||||
|
ZBX_DB_KEY_FILE=$(escape_spec_char "${ZBX_DB_KEY_FILE}")
|
||||||
|
ZBX_DB_CERT_FILE=$(escape_spec_char "${ZBX_DB_CERT_FILE}")
|
||||||
|
ZBX_DB_CA_FILE=$(escape_spec_char "${ZBX_DB_CA_FILE}")
|
||||||
|
|
||||||
sed -i \
|
sed -i \
|
||||||
-e "s/{DB_SERVER_HOST}/${DB_SERVER_HOST}/g" \
|
-e "s/{DB_SERVER_HOST}/${DB_SERVER_HOST}/g" \
|
||||||
-e "s/{DB_SERVER_PORT}/${DB_SERVER_PORT}/g" \
|
-e "s/{DB_SERVER_PORT}/${DB_SERVER_PORT}/g" \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user