After the successful deployment of the vRealize Log Insight cluster, you configure the SMTP setting by using the vRealize Log Insight user interface.
UI Procedure
- Log in to vRealize Log Insight at https://<vrealize_log_insight_fqdn> as admin.
- On the main navigation bar, click Administration.
In the left pane, select VMware Cloud Foundation Planning and Preparation Workbook, and click Save.
, configure the following settings, configure the remaining settings according to yourSettings
Values
SSL (SMTPS)
Disabled
STARTTLS encryption
Disabled
PowerShell Procedure
Start Windows PowerShell.
Replace the values in the sample code with values from your VMware Cloud Foundation Planning and Preparation Workbook and run the commands in the PowerShell console.
$sddcManagerFqdn = "sfo-vcf01.sfo.rainpole.io" $sddcManagerUser = "administrator@vsphere.local" $sddcManagerPass = "VMw@re1!" $smtpServer = "smtp.rainpole.io" $port = "25" $sender = "administrator@rainpole.io" $smtpUser = "svc-vrli-smtp" $smtpPass = "VMw@re1!"
Perform the configuration by running the command in the PowerShell console.
Add-vRLISmtpConfiguration -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -smtpServer $smtpServer -port $port -sender $sender -smtpUser $smtpUser -smtpPass $smtpPass