- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I would appreciate any help or suggestions on how to achieve this. Thank you in advance for your assistance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
You first need a resource which couples usernames to email addresses. For use in shell scripts, this could be a simple, blank-separated text file.
Once you have determined a username, read through the text file until you find a match, then send a mail (use mail or mailx, if on UNIX).
You can do the same thing rather easily in SAS, if XCMD is enabled. Run the du command in a pipe, fetch the output, extract utilization and username, join with a username/email dataset, then send mails with FILENAME EMAIL.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi @SowmyaB
Depending on your server platform, you could use
- Get-ADUser on Windows
- ldapsearch on Linux/Unix
To retrieve the mail/email property dynamically for a given user and send him/her an alert email.
Not sure about your organization, but in most companies, the general IT Infrastructure/Server Management group have the tools to perform such activities, while the Application Administrators, such as SAS System Administrator, typically responsible for
- Support one/multiple SAS Environments
- Ensuring uptime to meet business need
- Addressing any performance issues.
- Perform necessary patching, upgrades, and installation of Hotfixes across the environments.
- Troubleshoot issues with installations and user's configurations and set-up.
Hope this helps