Workload Automation DE (dSeries)
There could be several causes for this issue, including:
mail.smtp.host property has not been correctly populated or updated from the smtpconf.xml file after a post-installation change in the SMTP server address. The POPULATED flag in the ESP_VERSION table might be preventing the server from re-reading the configuration from the DBInit directory.SMTP Mail Server Address - Specifies the name of your SMTP mail server.
Example: mail.example.com
Prerequisites:
Verification Steps:
Query Database: Coordinate with your DBA to run the following SQL query against the ESP dSeries database:
Verify smtpconf.xml:
<DE_Install_dir>/conf/DBInit/Config/smtp directory.smtpconf.xml file exists and contains the correct and valid mail.smtp.host entry for your new SMTP server.Procedure to Populate SMTP Configuration into Database:
If the smtpconf.xml file is correct, but the database query in Step 1 returns no results, follow these steps to force the database to be populated with the SMTP configuration data:
Stop DE (dSeries) Servers:
Backup DBInit Directory:
<DE_install_dir>/conf/DBInit directory (e.g., rename it to DBInit_bkup or copy it to a safe location). This preserves all initial configuration files.Clean DBInit Directory:
<DE_install_dir>/conf/DBInit.DBInit except the Config subdirectory. This ensures only the core configuration the server needs to re-read remains.Flag Database for Repopulation (DBA Action):
POPULATED column in the ESP_VERSION table to zero (0):UPDATE ESP_VERSION SET POPULATED = 0;DBInit/Config directory upon its next startup.Commit DBA Changes:
Start DE (dSeries) Servers:
POPULATED = 0 flag, read the smtpconf.xml (and other configurations in the Config directory), and update the database accordingly.Verify SMTP Configuration in Topology:
Restore Other DBInit Files:
Config from your DBInit_bkup (created in Step 2) back to the original <DE_install_dir>/conf/DBInit directory. This restores any other initial configuration files that were temporarily removed in Step 3, ensuring the complete configuration is available.