To find a file in UNIX, Solaris, or Linux,  you can use the ‘Find‘ command.
Exampel: find / -name apache.* -print
This will search the whole system for any filename with apache and print the output to the screen.
Other arguments for the Find command:
-user username   <– this will search files owned by an user
-group groupname  <– this [...]