X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=monitor-server.init;h=6817b6ad1d66f5d0f36addbee4cd13d805b36d2a;hb=6481ba179a2fa6ab22cbed7f37a8104b152f77b3;hp=b627c17b457929b65b54fc49ba85e8be8b17e154;hpb=ca65ff1cd55b2a285320ec8562e8ca1e29fbc4f0;p=monitor.git diff --git a/monitor-server.init b/monitor-server.init index b627c17..6817b6a 100644 --- a/monitor-server.init +++ b/monitor-server.init @@ -192,11 +192,13 @@ API_AUTH_PASSWORD=${PLC_MONITOR_DBPASSWORD} MONITOR_SCRIPT_ROOT=${MONITORPATH} MONITOR_DATA_ROOT=/var/lib/monitor MONITOR_ARCHIVE_ROOT=/var/lib/monitor/archive-pdb +MONITOR_BOOTMANAGER_LOG=/var/www/html/monitorlog MONITOR_HOSTNAME=${PLC_MONITOR_HOST} MONITOR_IP=${PLC_MONITOR_IP} PLC_WWW_HOSTNAME=${PLC_WWW_HOST} +PLC_NAME=${PLC_NAME} # used for debug mode email= @@ -256,7 +258,7 @@ function create_httpd_conf () # non-ssl session as non-ssl. But it works. # NOTE: redirect path without trailing '/' to path with. Favor SSL. -Redirect /monitor https://${MONITOR_HOSTNAME}:${PLC_WWW_SSL_PORT}/monitor/ +Redirect /monitor https://${PLC_MONITOR_HOST}:${PLC_WWW_SSL_PORT}/monitor/ # NOTE: this directive strips '/monitor/' from the requested path and pastes # the remaining part to the end of the ProxyPass url below. All TG urls @@ -268,8 +270,8 @@ Redirect /monitor https://${MONITOR_HOSTNAME}:${PLC_WWW_SSL_PORT}/monitor/ #Errorlog /var/log/httpd/monitorwebapp-error_log #Customlog /var/log/httpd/monitorwebapp-access_log common - ProxyPass http://127.0.0.1:8080/ - ProxyPassReverse http://127.0.0.1:8080/ + ProxyPass http://127.0.0.1:8082/ + ProxyPassReverse http://127.0.0.1:8082/ EOF @@ -362,10 +364,9 @@ case "$1" in check_user_and_db $MONITOR_DB_NAME $MONITOR_DB_USER # WRITE default /etc/monitor.conf check_monitor_conf - check_monitor_schema_and_data - check_pg_hba $ZABBIX_DB_NAME $ZABBIX_DB_USER - check_user_and_db $ZABBIX_DB_NAME $ZABBIX_DB_USER + #check_pg_hba $ZABBIX_DB_NAME $ZABBIX_DB_USER + #check_user_and_db $ZABBIX_DB_NAME $ZABBIX_DB_USER if [ -n "$WROTE_PG_CONFIG" ] ; then # NOTE: restart db to enable access by users granted above. @@ -375,8 +376,10 @@ case "$1" in dialog "$MESSAGE" fi - check_zabbix_schema_and_data - check_zabbix_templates_and_import + check_monitor_schema_and_data + + #check_zabbix_schema_and_data + #check_zabbix_templates_and_import # create /etc/httpd/conf.d/monitorweb.conf @@ -390,9 +393,9 @@ case "$1" in start_tg_server # START zabbix services. SETUP default config files. - check_zab_server - check_zab_agentd - check_zab_webconfig + #check_zab_server + #check_zab_agentd + #check_zab_webconfig result "$MESSAGE" ;; @@ -428,8 +431,8 @@ case "$1" in MESSAGE=$"Deleting databases..." dialog "$MESSAGE" - dropdb -U postgres $ZABBIX_DB_NAME - dropuser -U postgres $ZABBIX_DB_USER + #dropdb -U postgres $ZABBIX_DB_NAME + #dropuser -U postgres $ZABBIX_DB_USER dropdb -U postgres $MONITOR_DB_NAME dropuser -U postgres $MONITOR_DB_USER @@ -442,8 +445,8 @@ case "$1" in dialog "$MESSAGE" stop_tg_server - service zabbix_server stop - service zabbix_agentd stop + #service zabbix_server stop + #service zabbix_agentd stop # TODO: is there anything to stop? result "$MESSAGE" ;;