Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

342
Views
Unable to log output of "apachectl configtest" to a file

I want to log the output of the command "apachectl configtest" to a file. So I tried the following commands:

root@ubuntu:~# echo $(apachectl -t) >> /tmp/apache_config_check
[Sun Feb 21 14:35:23.614947 2016] [proxy_html:notice] [pid 29249] AH01425: I18n support in mod_proxy_html requires mod_xml2enc. Without it, non-ASCII characters in proxied pages are likely to display incorrectly.
Syntax OK

But It gave empty output:

root@ubuntu:~# cat /tmp/apache_config_check 

root@ubuntu:~# 

I also tried a variation on the command itself:

root@ubuntu:~# apachectl -t >> /tmp/apache_config_check

and a variation on tee:

root@ubuntu:~# $(apachectl -t) | tee /tmp/apache_config_check

Without luck.

I don't really know any other methods to pipe the output, nor I know why the above commands failed. Is it something fundamental?

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

The problem is that apachectl is sending its output to STDERR instead of STDOUT. So, you need to redirect STDERR as follows:

apachectl -t > /tmp/apache_config_check 2>&1

The 2>&1 is shell-script magic saying "redirect output on file descriptor 2 (STDERR) to file descriptor 1 (STDOUT)".

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!