• DevOps
    Case Study

    How we helped a development company rebuild DevOps for efficiency and scale.

    READ CASESTUDY
    icon

    24/7 DevOps as a Service

    Round-the-clock DevOps for uninterrupted efficiency.

    icon

    Infrastructure as a Code

    Crafting infrastructure with ingenious code.

    icon

    CI/CD Pipeline

    Automated CI/CD pipeline for seamless deployments.

    icon

    DevSecOps

    Integrated security in continuous DevOps practices.

    icon

    Hire DevOps Engineers

    Level up your team with DevOps visionaries.

    icon

    Consulting Services

    Navigate success with expert DevOps consulting.

  • TechOps
    Case Study

    How a US hosting leader scaled with us!

    READ CASESTUDY

    WEB HOSTING SUPPORT

    icon

    HelpDesk Support

    Highly skilled 24/7 HelpDesk Support

    icon

    Product Support

    Boost your product support with our expertise.

    MANAGED SERVICES

    icon

    Server Management

    Don’t let server issues slow you down. Let us manage them for you.

    icon

    Server Monitoring

    Safeguard your server health with our comprehensive monitoring solutions.

    STAFF AUGMENTATION

    icon

    Hire an Admin

    Transform your business operations with our expert administrative support.

    icon

    Hire a Team

    Augment your workforce with highly skilled professionals from our diverse talent pool.

  • CloudOps
    Case Study

    How we helped a Private Deemed University in India, save US $3500/m on hosting charges!

    READ CASESTUDY
    icon

    AWS Well Architected Review

    Round-the-clock for uninterrupted efficiency

    icon

    Optimize

    Efficient CloudOps mastery for seamless cloud management

    icon

    Manage

    Automated CI/CD pipeline for seamless deployments

    icon

    Migrate

    Upgrade the journey, Migrate & Modernize seamlessly

    icon

    Modernize

    Simplify compliance complexities with our dedicated services

    icon

    FinOps as a Service

    FinOps as a Service

  • SecOps
    Case Study

    Enabling financial grade platforms through strategic cloud modernisation.

    READ CASESTUDY
    icon

    VAPT

    Vulnerability Assessment and Penetration Testing

    icon

    Source Code Review

    Ensuring source code security ans safe practices to reduce risks

    icon

    Security Consultation

    On demand services for improving server security

    icon

    System Hardening

    Reduced vulnerability and proactive protection

    icon

    Managed SoC

    Monitors and maintains system security. Quick response on incidents.

    icon

    Compliance as a Service

    Regulatory compliance, reduced risk

  • Insights
    Case Study

    How we helped a Private Deemed University in India, save US $3,500/m on hosting charges!

    READ CASESTUDY
    icon

    Blog

    Explore our latest articles and insights

    icon

    Case Studies

    Read about our client success stories

    icon

    Flipbook

    Explore our latest Flipbook

    icon

    Events

    Join us at upcoming events and conferences

    icon

    Webinars

    Watch our educational webinar series

  • Our Story
  • Contact Us

Interested to collaborate?

Get in touch with us!

Ready to elevate your business with certified cloud expertise? Contact us today to learn how our team can help you leverage cloud technology to drive growth, streamline operations, and enhance security.

  • AWSAWS
  • Azure CloudAzure Cloud
  • Google CloudGoogle Cloud
  • Akamai CloudAkamai Cloud
  • OVHOVH
  • Digital OceanDigital Ocean
  • HetznerHetzner
  • Managed Services Overview
  • Kubernetes Consulting
  • DevOps as a Service
  • Infrastructure Monitoring
  • Kubernetes Consultancy Services
  • K8s & Cloud native Solutions
  • 24/7 Infrastructure Monitoring
  • DevOps as a Service
  • Cloud CI/CD Solutions
  • White Labeled MSP Support
  • Our story
  • Life@SupportSages
  • Insights
  • Careers
  • Events
  • Services
  • Managed Services

aws partneraws advanced partner
LinkedInFacebookXInstagramYouTube
SupportSages

Copyright © 2008 – 2026 SupportSages Pvt Ltd. All Rights Reserved.
Privacy PolicyLegal TermsData ProtectionCookie Policy

Error log fails to get update in Virtualmin

Author Profile
Sachu Sugunan
  • 3 min read
Error log fails to get update in Virtualmin

Generating audio, please wait...

Scenario

Let us consider the case with domain my-domain.com. The domain shows a blank page while accessing .

To investigate the issue let us check the apache error log via terminal.

Firstly check the error log path of my-domain.com in http configuration file.


vi /etc/http/conf/httpd.conf
 <VirtualHost xxx.76.212.106:80>
 SuexecUserGroup "#518" "#505"
 ServerName my-domain.com
 ServerAlias www.my-domain.com
 ServerAlias webmail.my-domain.com
 ServerAlias admin.my-domain.com
 DocumentRoot /home/my-domain/public_html
 ErrorLog /var/log/virtualmin/my-domain.com_error_log
 CustomLog /var/log/virtualmin/my-domain.com_access_log combined
 ScriptAlias /cgi-bin/ /home/my-domain/cgi-bin/
 ScriptAlias /awstats/ /home/my-domain/cgi-bin/
 DirectoryIndex index.html index.htm index.php index.php4 index.php5
 Directory /home/my-domain/public_html
 Options -Indexes +IncludesNOEXEC +SymLinksIfOwnerMatch +ExecCG
 allow from all
 AllowOverride All Options=ExecCGI,Includes,IncludesNOEXEC,Indexes,MultiViews,SymLinksIfOwnerMatch
 AddHandler fcgid-script .php
 AddHandler fcgid-script .php5
 FCGIWrapper /home/my-domain/public_html/fcgi-bin/php5.fcgi .php
 FCGIWrapper /home/my-domain/public_html/fcgi-bin/php5.fcgi .php5
 </Directory>
 <Directory /home/my-domain/cgi-bin

The Virtualmin error log path is /var/log/virtualmin/my-domain.com_error_log

Now let us check the Virtualmin error log 

</pre>
# tail -f /var/log/virtualmin/my-domain.com_error_log
 Mon Jan 27 05:56:33 2014] [alert] [client xxx.92.64.16] /home/my-domain/public_html/.htaccess: Option All not allowed here
 Mon Jan 27 05:56:47 2014 [alert] [client xxx.92.64.16] /home/my-domain/public_html/.htaccess: Option All not allowed here</span></pre>

The server time being displayed is

$ date
 Mon Jan 27 10:57:44

If you compare the time shown in the logs with the current one, it is evident that the error log is not getting updated.

The most possible cause for this issue is that the quota for the account may be full. Let us check the quota.  For the ease of convenience I am extracting only the relevant entries here

# repquota -a
.....
 my-domain +- 85289512 1048576 1048576 6days 45967 0 0
.....

The Quota for my-domain is full. So you need to edit the quota.

# edquota my-domain
Disk quotas for user my-domain (uid 518):
 Filesystem blocks soft hard inodes soft hard
 /dev/xvda1 85289704 0 0 45976 0

The quota has been increased for the account my-domain.com. Now let us check whether error log is writing by accessing my-domain.com again.

 [alert] [client xx.17.17.141] /home/my-domain/public_html/img/.htaccess: Option All not allowed here
[Mon Jan 27 11:21:51 2014 [alert] [client xx.17.17.141] /home/my-domain/public_html/img/.htaccess: Option All not allowed here

Now check the time in the logs, it shows the current time. The error log started to update 🙂

Get 24/7 expert server management

  • Linux
  • Troubleshooting
Error log fails to get update in Virtualmin

Posts by Sachu Sugunan

Sachu Sugunan