Whenever you face any issue with Web Tier like not able to bring up, restart failure you need to go and check logs. Logs are present in two location:
SASServer1_1 server logs - /Lev1/Web/WebAppServer/SASServer1_1/logs
SAS web application logs - /Lev1/Web/Logs/SASServer1_1
find /Lev1/Web/WebAppServer/SASServer1_1/logs -type f -name "SAS*.log" -mtime -1 -exec grep -H ERROR {} \;
SASServer1_1 server logs - /Lev1/Web/WebAppServer/SASServer1_1/logs
SAS web application logs - /Lev1/Web/Logs/SASServer1_1
To find today's log with error, you can use below command in Linux/Unix:
find /Lev1/Web/Logs/SASServer1_1 -type f -name "SAS*.log" -mtime -1 -exec grep -H ERROR {} \;find /Lev1/Web/WebAppServer/SASServer1_1/logs -type f -name "SAS*.log" -mtime -1 -exec grep -H ERROR {} \;
Comments
Post a Comment