ML
    • Register
    • Login
    • Search
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. Tags
    3. httpd
    Log in to post
    • All categories
    • DustinB3403

      Kibana Wazuh - No login page option
      IT Discussion • wazuh wazuh-manger httpd • • DustinB3403

      14
      0
      Votes
      14
      Posts
      703
      Views

      DustinB3403

      This is how you change the password.

    • scottalanmiller

      Solved Tracking Down an Apache & WordPress Memory Leak
      IT Discussion • wordpress apache ubuntu linux ubuntu 19.04 httpd prefork • • scottalanmiller

      5
      1
      Votes
      5
      Posts
      1210
      Views

      scottalanmiller

      We got it. Had to open the Nginx logs and noticed too many "posts" in the error log. Dug in and it was three ranges overseas all hitting with a "post timeout attack." It was a light DDoS where sessions were being opened and held causing nginx to wait on a timeout. This caused Apache to just increment forever. Once we blocked those ranges, the Apache thread count started to drop for the first time, and memory started to release. And the continuous flood of nginx error logs ceased.

      If you are looking at nginx error logs, this is what you look for: upstream timed out (110: Connection timed out) while reading response header from upstream, client:

      You can use this command to collect the offending IP addresses:

      grep "upstream timed out" error.log | cut -d' ' -f20

      Then use your firewall to shut them down. We are all good now! Woot.

    • scottalanmiller

      Fedora 30 LAMP Web Server Varnish Cache Broken After Update
      IT Discussion • fedora linux fedora 30 varnish cache nginx apache httpd lamp web server • • scottalanmiller

      10
      1
      Votes
      10
      Posts
      320
      Views

      scottalanmiller

      Worth noting that the issue comes back when you upgrade to Fedora 31 as well. Same fix still applies.

    • scottalanmiller

      Fedora 29 Apache HTTPD Keeps Adding ssl.conf
      IT Discussion • linux fedora fedora 29 apache httpd ssl • • scottalanmiller

      13
      0
      Votes
      13
      Posts
      525
      Views

      scottalanmiller

      @dafyre said in Fedora 29 Apache HTTPD Keeps Adding ssl.conf:

      Have you tried creating a blank ssl.conf file and then chmod +i ssl.conf ?

      I've not, but that's such a hockie way of doing it, I was hoping not to.

    • DustinB3403

      CentOS7 Server Apache Disable old TLS for higher versions
      IT Discussion • tls tls 1.2 tls 1.0 apache httpd • • DustinB3403

      12
      3
      Votes
      12
      Posts
      1643
      Views

      JaredBusch

      @coliver said in CentOS7 Server Apache Disable old TLS for higher versions:

      @jaredbusch said in CentOS7 Server Apache Disable old TLS for higher versions:

      @coliver said in CentOS7 Server Apache Disable old TLS for higher versions:

      @DustinB3403 I really like this site for information on securing various web servers.

      https://cipherli.st/

      I just implemented their Nginx setting but getting back that TLSv1 was accepted?

      https://www.ssllabs.com/ssltest/analyze.html?d=naggaroth.daerma.com

      First line should read TLS1.2 if you don't have a version of Nginx that supports 1.3.

      Correct. That is the only change I made to their config. I even reran dhparam

    • NashBrydges

      HTTPD Fails To Start On Reboot Fedora
      IT Discussion • httpd fedora 27 • • NashBrydges

      11
      0
      Votes
      11
      Posts
      1441
      Views

      NashBrydges

      @jaredbusch said in HTTPD Fails To Start On Reboot Fedora:

      @nashbrydges said in HTTPD Fails To Start On Reboot Fedora:

      @black3dynamite said in HTTPD Fails To Start On Reboot Fedora:

      Was bookstack working before the reboot?

      It was working. Only after reboot did it screw up.

      @black3dynamite he probably has not rebooted since the first install which he did prior to me fixing the log file error.

      Yup. You are correct.

    • DustinB3403

      Apache Struts - Critical Security Flaw
      News • apache struts vulnerability httpd equifax breach millions • • DustinB3403

      21
      0
      Votes
      21
      Posts
      2395
      Views

      coliver

      @jaredbusch said in Apache Struts - Critical Security Flaw:

      Was the Eqifax breech because of the march strus flaw or a more recent one?

      Just making sure the actual facts are known.

      The one from March.

    • scottalanmiller

      Using SaltStack to Install High Performance LAMP on Fedora 25
      IT Discussion • linux salt saltstack lamp apache httpd php php 7 mariadb • • scottalanmiller

      12
      1
      Votes
      12
      Posts
      2452
      Views

      C

      @scottalanmiller How are you liking Salt Stack?

    • scottalanmiller

      Configure a Basic Apache HTTP Virtual Host for Most Linux
      IT Discussion • apache httpd centos fedora korora rhel linux webserver virtualhost • • scottalanmiller

      5
      2
      Votes
      5
      Posts
      1522
      Views

      JaredBusch

      @scottalanmiller Also, using just using the root domain name for the conf file name is potentially confusing depending on how much you are hosting.

      Even for my gaming website, I have a bunch of sub domains setup.

      www.daerma.com.conf goes to the root and www.
      oc.daerma.com.conf is owncloud
      obelisk.daerma.com.conf is my nodeBB forum

      That does not even get into what do you do about the ones that you have multiple TLD names for such as .it, .com, .org, etc.

    • scottalanmiller

      Installing a Basic LAMP Stack on CentOS 7
      IT Discussion • lamp linux mysql mariadb apache httpd php centos centos 7 rhel rhel 7 • • scottalanmiller

      20
      4
      Votes
      20
      Posts
      3813
      Views

      JaredBusch

      @scottalanmiller said in Installing a Basic LAMP Stack on CentOS 7:

      @NashBrydges said in Installing a Basic LAMP Stack on CentOS 7:

      @scottalanmiller I haven't yet. About to give it a try. Stuck to legacy since that was what I was reading everywhere.

      Where is everywhere? Technet says to not use legacy.

      https://technet.microsoft.com/en-us/windows-server-docs/compute/hyper-v/supported-centos-and-red-hat-enterprise-linux-virtual-machines-on-hyper-v

      Legacy is a fallback driver that you never want to use, it's low performance and high overhead. If you needed that for CentOS, it would make Hyper-V a silly, non-production ready platform. But Hyper-V is a good, solid performer.

      Not only that, but I install all of my CentOS 7 VM's as Generation 2 when on Hyper-V they work perfectly with default settings for everything except secure boot. Uncheck secure boot. Everything else is 100% default settings.

    • scottalanmiller

      Improving Elastix 2 Memory Usage
      IT Discussion • linux apache httpd elastix swappiness elastix 2 elastix 2.3 elastix 2.4 elastix 2.5 • • scottalanmiller

      1
      2
      Votes
      1
      Posts
      1062
      Views

      No one has replied

    • Gaurav Bmotra

      Elastix login page gives error HTTP ERROR 500 when login
      IT Discussion • voip pbx freepbx elastix elastix 4 linux centos centos 7 httpd apache • • Gaurav Bmotra

      24
      1
      Votes
      24
      Posts
      9434
      Views

      dbeato

      @scottalanmiller said in Elastix login page gives error HTTP ERROR 500 when login:

      @dbeato said in Elastix login page gives error HTTP ERROR 500 when login:

      @denny said in Elastix login page gives error HTTP ERROR 500 when login:

      systemctl stop firewalld disable selinux find /var/www/html/var/ -type d -exec chmod 755 {} ; find /var/www/html/var/ -type f -exec chmod 755 {} ;

      🙂

      Way to necro a post, security and firewall ar of the upmost importance. No system ever needs to be setup open this way....

      I think that he was being tongue in cheek.

      Okay, I didn't get it LOL

    • JaredBusch

      ownCloud 8.2.4 to 9.0.2 upgrade problem
      IT Discussion • owncloud owncloud 8.2 owncloud 9 upgrade error apache httpd • • JaredBusch

      5
      0
      Votes
      5
      Posts
      2546
      Views

      JaredBusch

      @scottalanmiller said in ownCloud 8.2.4 to 9.0.2 upgrade problem:

      have you tested yet?

      I have more systems that I can upgrade, but I have not done so yet.

    • JaredBusch

      Solved Apache not starting on CentOS 7
      IT Discussion • apache centos 7 centos httpd • • JaredBusch

      17
      1
      Votes
      17
      Posts
      5441
      Views

      JaredBusch

      @scottalanmiller said:

      Nothing scarier than things that fix themselves 😞

      Seriously upset about this. I will be rebooting the machine a few times today trying to make it do it again.