English flagItalian flagGerman flagSpanish flagFrench flagPortuguese flagJapanese flagKorean flagChinese flagRussian flag
By N2H
Home » Tips Home »Tipps

Tips Tipps

Manage cronjobs with VCS Application Verwalten Cronjobs mit VCS Application

Here is how I fail over application account cronjobs using VCS. Hier ist, wie ich nicht über die Anwendung Konto Cronjobs mit VCS.
Application Appx_cronjobs Application Appx_cronjobs
(
Critical = 0ff Kritische = 0ff
StartProgram = “/usr/bin/su - appxusr -c “touch ./crontab.LAST”” StartProgram = "/ usr / bin / su - appxusr-c" touch. / Crontab.LAST ""
StopProgram = “/usr/bin/su - appxusr -c “/usr/bin/rm -f ./crontab.LAST”” StopProgram = "/ usr / bin / su - appxusr-c" / usr / bin / rm-f. / Crontab.LAST ""
CleanProgram = “/usr/bin/su - appxusr -c “/usr/bin/rm -f ./crontab.LAST”” CleanProgram = "/ usr / bin / su - appxusr-c" / usr / bin / rm-f. / Crontab.LAST ""
MonitorProgram = “/usr/bin/su appsusr -c /etc/VRTSvcs/utils/vcs_cron_monitor.sh” […] MonitorProgram = "/ usr / bin / su appsusr-c / etc / VRTSvcs / utils / vcs_cron_monitor.sh" […]

No Comments » Keine Kommentare »

Top Space Users In A Filesystem Top-Space-Nutzer in einem Dateisystem

# A fast way to find a file du -a | grep -i # Eine schnelle Weg zu finden, eine Datei du-a | grep-i
# Top 10 space users in a filesystem du -a | sort -n | tail -10 # Top 10 Platz Benutzer in einem Dateisystem du-a | sort-n | tail -10

No Comments » Keine Kommentare »

How to tell process owning open socket without lsof How to Tell-Prozess besitzen offene Buchse ohne lsof

Normally with lsof lsof -i tcp: Normalerweise mit lsof lsof-i tcp:
I found this alternative for if lsof is not available on a server to determine the process associated with an open socket Loop through all the running processes with this command till you find it Ich fand diese Alternative für lsof, wenn nicht auf einem Server verfügbar zu bestimmen, den Prozess im Zusammenhang mit einer offenen Socket-Schleife über alle laufenden Prozesse mit diesem Befehl, bis Sie finden es
pfile | grep “port:” pfile | grep "Port:"
Sorry but I think it is only available on Solaris 10. Sorry, aber ich denke, es ist nur auf Solaris-10.

No Comments » Keine Kommentare »