How to stop generation of the localhost_access_log files under ServiceDesk\bopcfg\www\CATALINA_BASE? Will there be any impact by deleting these files?
Yes, you can delete the localhost_access_log files.
In order that you want to stop generation of these files perform the below steps:
1) Open the server.xml file located under Service Desk Manager\bopcfg\www\CATALINA_BASE\conf folder.
2) Find the below line
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" pattern="%h %l %u %t "%r" %s %b" prefix="localhost_access_log." suffix=".txt"/>
3) Add <!-- at the beginning and --> at the end of this line as shown below:
<!--<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" prefix="localhost_access_log." suffix=".txt" pattern="common" resolveHosts="false" /> -->
4) Restart the ServiceDesk Services.
This will stop generating the localhost_access_log.txt files.