When you need to search recursively inside a structure of directories you need to run the following command from the console:
find /srv -type f -follow -exec grep –with-filename –line-number “apache2ctl” {} ;This will search in every file from every folder from /srv and will show in which file and at each line it finds the right information.
Cheers,