Hi,
I am running CentOS Linux release 7.9.2009 (Core). Is there a way to notify via email if any files or folders have been accessed, modified, or changed? Also, if somebody deletes or adds any files in a specific folder /opt. Sysadmin should be notified via email or Slack channel using an alerting mechanism.
Please guide and suggest. Thanks in advance.
Best Regards,
Kaushal
On 3/22/22 6:13 AM, Frank Cox wrote:
On Tue, 22 Mar 2022 10:12:30 +0530 Kaushal Shriyan wrote:
Please guide and suggest. Thanks in advance.
man inotify
and
man incron
On Thu, Mar 24, 2022 at 2:34 PM Roberto Ragusa mail@robertoragusa.it wrote:
On 3/22/22 6:13 AM, Frank Cox wrote:
On Tue, 22 Mar 2022 10:12:30 +0530 Kaushal Shriyan wrote:
Please guide and suggest. Thanks in advance.
man inotify
and
man incron
-- Roberto Ragusa mail at robertoragusa.it _______________________________________________ CentOS mailing list CentOS@centos.org https://lists.centos.org/mailman/listinfo/centos
Thanks Roberto and Frank for the response !!! Is there a way to notify it via email? Any examples? Thanks in advance.
Best Regards,
Kaushal
On Thu, Mar 24, 2022 at 10:40 PM Kaushal Shriyan kaushalshriyan@gmail.com wrote:
On Thu, Mar 24, 2022 at 2:34 PM Roberto Ragusa mail@robertoragusa.it wrote:
On 3/22/22 6:13 AM, Frank Cox wrote:
On Tue, 22 Mar 2022 10:12:30 +0530 Kaushal Shriyan wrote:
Please guide and suggest. Thanks in advance.
man inotify
and
man incron
-- Roberto Ragusa mail at robertoragusa.it _______________________________________________ CentOS mailing list CentOS@centos.org https://lists.centos.org/mailman/listinfo/centos
Thanks Roberto and Frank for the response !!! Is there a way to notify it via email? Any examples? Thanks in advance.
Best Regards,
Kaushal
https://www.unixmen.com/how-to-monitor-filesystem-events-with-incron/
--- Lee
Hi Lee,
Thanks for sharing the link https://www.unixmen.com/how-to-monitor-filesystem-events-with-incron/. However I am receiving multiple emails (more than 1 email) while accessing the /var/www/html/prodsys.cert file. Am i missing something as per the below incrontab -l output
/var/www/html/prodsys.cert IN_ALL_EVENTS printf "Subject: Prod Public Certificate file Monitoring\n\n prodsys.cert Certificate file in /var/www/html/ directory has been accessed in https://dev.internalcraft.com https://hsbcidpdev.digitalapicraft.com/ " | /usr/sbin/ssmtp -vvv user@xxxxxxxxx.com >> /tmp/ic.log 2>&1
Please guide me. Thanks in advance.
Best Regards,
Kaushal
On Fri, Mar 25, 2022 at 11:35 AM Thomas Stephen Lee lee.iitb@gmail.com wrote:
On Thu, Mar 24, 2022 at 10:40 PM Kaushal Shriyan kaushalshriyan@gmail.com wrote:
On Thu, Mar 24, 2022 at 2:34 PM Roberto Ragusa mail@robertoragusa.it wrote:
On 3/22/22 6:13 AM, Frank Cox wrote:
On Tue, 22 Mar 2022 10:12:30 +0530 Kaushal Shriyan wrote:
Please guide and suggest. Thanks in advance.
man inotify
and
man incron
-- Roberto Ragusa mail at robertoragusa.it _______________________________________________ CentOS mailing list CentOS@centos.org https://lists.centos.org/mailman/listinfo/centos
Thanks Roberto and Frank for the response !!! Is there a way to notify
it
via email? Any examples? Thanks in advance.
Best Regards,
Kaushal
https://www.unixmen.com/how-to-monitor-filesystem-events-with-incron/
Lee _______________________________________________ CentOS mailing list CentOS@centos.org https://lists.centos.org/mailman/listinfo/centos
On 26/04/2022 21:05, Kaushal Shriyan wrote:
Hi Kaushal,
Thanks for sharing the link https://www.unixmen.com/how-to-monitor-filesystem-events-with-incron/. However I am receiving multiple emails (more than 1 email) while accessing the /var/www/html/prodsys.cert file. Am i missing something as per the below incrontab -l output
/var/www/html/prodsys.cert IN_ALL_EVENTS printf "Subject: Prod
You've asked incron to inform you of all events, so presumably, your "access" triggers multiple filesystem events. You need to be more selective about which events you want to be notified about.
Regards, Anand