Search results

  1. V

    Switching from redis (Yum) to redis (custombuild)

    Is there an easy way to switch from yum installed Redis to the Custombuild managed Redis? Will I still be able to set maxmemory in /etc/redis.conf or can it be overridden by custombuild? I know I'll have to make edits to the sites on the server so they will connect to a socket instead of...
  2. V

    subdomain (with changed docroot) still uses main domain config

    Hi, I made a subdomain for a domain in the GUI of DirectAdmin and changed the docroot in the GUI to a subdirectory. Normally this would be working as intended but for whatever reason when I browse to the subdomain, it still gives me my main domains content instead of what should be displayed...
  3. V

    AlmaLinux and MariaDB 10.6 upgrade failed

    would be good if this gets fixed :D ran into the same issue today with the upgrade to MariaDB 10.6.4 @DirectAdmin Support @smtalk
  4. V

    Free plugin to backup to S3 in DirectAdmin

    Install s3cmd (S3 command line tools). Info: https://s3tools.org/s3cmd-howto dnf install s3cmd s3cmd --configure After it has been configured, create script /usr/local/directadmin/scripts/custom/all_backups_post.sh #!/bin/bash s3cmd sync /backupdir s3://bucketname chmod 700 all_backups_post.sh...
  5. V

    PHP Fatal error

    As the version is from 2008, it’s likely the site was using Joomla 1.5. So you can’t update and the only way is a full migration. Full steps are available at: https://docs.joomla.org/Joomla_1.5_to_3.x_Step_by_Step_Migration/en Keep in mind that it is a migration, so each custom and third party...
  6. V

    tcp accept queue overflow/drops + tcp syn queue cookies full

    Since I have netdata installed, every time I have a traffic spike on the server, due to a site sending out +50k of push notifications, netdata sends some e-mails with the following contents: 1m tcp syn queue cookies = 452.6 cookies 1m tcp syn queue cookies (was critical for 1 minute and 21...
  7. V

    DirectAdmin 1.61.0 RC1 netdata issues

    On CentOS 8, the link in the Evolution skin disappears each time after the nightly update, I need to reinstall Netdata each time to make the link visible again in the DirectAdmin menu but after the nightly update it always disappears (but Netdata itself is still running because it still shows up...
  8. V

    Error writing Rspamd log

    Since I installed Rspamd through custom build the daily log rotate fails with the following message: error: Compressing program wrote following message to stderr when compressing log /var/log/rspamd/rspamd.log-20200228: gzip: stdin: file size changed while zipping Haven't find anything about it...
  9. V

    Connecting to sock failed 11: Resource temporarily unavailable

    the memcached hasn't reached it's maxcon setting and the number of simultaneous connected ip's to the server was low, the server has handled ten times more connections last week and didn't have any of these issues. So how can it be with less requests/second it all went to fail? update: looks...
  10. V

    Connecting to sock failed 11: Resource temporarily unavailable

    Updated the memcached extension to latest version as a start. I do suspect something else, during the time it occurred CPU usage and load was above normal and it didn't happen on other pages of that domain that also used memcached. So if php would segfault it should have reflected on all pages...
  11. V

    Connecting to sock failed 11: Resource temporarily unavailable

    Only memcached as 3rd party extension. ?
  12. V

    Connecting to sock failed 11: Resource temporarily unavailable

    Today I started seeing continues error in a domains Nginx error log: 2020/02/05 18:50:59 [error] 5227#0: *8848958 connect() to unix:/usr/local/php73/sockets/domain.sock failed (11: Resource temporarily unavailable) while connecting to upstream, client: 116.2.77.205, server: domain.com, request...
  13. V

    missing dependencies libmodsecurity 3.0.4

    Lua wasn’t installed according to yum so I had to install it ?‍♂️
  14. V

    missing dependencies libmodsecurity 3.0.4

    As it was installed before I wouldn't expect an issue with dependencies so it was a bit odd. Here is the log: Found /usr/local/directadmin/custombuild/modsecurity-v3.0.4.tar.gz Extracting /usr/local/directadmin/custombuild/modsecurity-v3.0.4.tar.gz... Configuring modsecurity-v3.0.4... checking...
  15. V

    missing dependencies libmodsecurity 3.0.4

    Custombuild notified me from an update LibModSecurity 3.0.3 to 3.0.4 update is available. But when updating it was failing because of missing dependencies (Centos 7 with Nginx). Following this link: https://github.com/SpiderLabs/ModSecurity/wiki/Compilation-recipes-for-v3.x the following...
  16. V

    CentOS 7.7 released

    Has nothing to do with centOS but with php 7.2 which has a change when using count() on a variable that’s not an array. Before using count() in php you can check the variable with is_countable() or use is_array() . My box was updated successfully without issues on centOS 7.7
  17. V

    ModSecurity Comodo rules aren't applied?

    It was Off indeed and I changed it in /etc/nginx/nginx-modsecurity.conf and restarted Nginx, test turns out with 403 respons code. Thanks!
  18. V

    ModSecurity Comodo rules aren't applied?

    After installing ModSecurity with: ./build modsecurity ./build modsecurity_rules first issue I ran into was in this topic. After fixing that I tried to test if the rules are applied and see if the WAF does its work. I followed the example of the Comodo knowledgebase. But if I test it, it still...
  19. V

    nginx_apache comodo waf

    same issue with Nginx, solved with modified code of above: cd /usr/local/directadmin/custombuild/ mkdir -p custom/nginx/conf/ [ -f "custom/nginx/conf/nginx-modsecurity.conf" ] || cp -p configure/nginx/conf/nginx-modsecurity.conf custom/nginx/conf/nginx-modsecurity.conf perl -pi -e...
  20. V

    Php systemctl issue after firmware update And kernel patch

    Can confirm it’s still present when doing it through the custumbuild plugin. I still edit the configure file manually through ssh to avoid these problems
Back
Top