I want my microcore open terminal screen to show each hit on my webserver and from where on the current open console screen, as they occur in real time....
From this page:
http://httpd.apache.org/docs/2.2/logs.html"Apache httpd is capable of writing error and access log files through a pipe to another process, rather than directly to a file. This capability dramatically increases the flexibility of logging, without adding code to the main server. In order to write logs to a pipe, simply replace the filename with the pipe character "|", followed by the name of the executable which should accept log entries on its standard input. Use "||" instead of "|" to spawn without invoking a shell:"
SO..., I thought I would pipe it to wall, which writes to all open consoles (and can be turned on off with mesg y/n... by adding this addition to my httpd.conf:
CustomLog "||wall" commonProblem... tc barfs... "that there is no
wall command installed"... so I start App Browser installer with "ab" and search for "wall"... or any package that might include it... nothing found....
How do I get "wall" installed on my system, or is there a better way to do this? I want to see every httpd hit on my dedicated microcore apache server as it occurs, and wall seemed the best way to go.