I have a shop that has big purchase peaks every now and then. Server can become unresponsive at those times with even the biggest server available. The shop does not have any ERP integrations and many RabbitMQ tutorials suggest that those specifically would benefit from using RabbitMQ. My question is, […]
Monthly Archives: April 2024
I’m running Windows 10 (10.0.19045.4170) which has the ability to forward sound from specific applications to specific audio devices (Settings -> System -> Sound -> App volume and device preferences). I’m using SMPlayer (22.7) to play multiple files in its Playlist window (i.e. no saved playlist). However, since SMPlayer is […]
Is there a way to make the Windows 10 task manager (or the resource monitor) show network usage for ALL tasks, including the kernel? I am trying to figure out which process / task is eating up my network bandwidth. When I run an internet speed test in my browser […]
I am trying to test IPv6 on a Hyper-V VM instance in Windows 10. IPv6 is enabled on my network, and working on my host machine (e.g, ping -6 ipv6.google.com is fine). However, in my VM, ping -6 does not work for global unicast addresses (link-local addresses to interfaces on […]
I recently upgraded my system from Ubuntu 20LTS to Ubuntu 22LTS, and I’ve encountered an issue with my RAID-5 array consisting of four Seagate Ironwolf 4TB hard drives (from /dev/sda to /dev/sdd). These drives are going into standby mode unexpectedly. Before the upgrade, the drives operated continuously without entering standby, […]
Because I can only get to server3 from server2 (Server2 running CentOS7), I’m trying to create a “template” command or a script that I can use to : ssh to server2 switch to another user in server2 ssh into server3 run commands in server3 get the output printed in the […]
Building a fortress around DNS is a necessity for ensuring the resilience of internet services. Here’s how to strengthen it. Continue reading Building a Digital Fortress: How to Strengthen DNS Against DDoS Attacks? on SitePoint.
I’ve followed all the solutions found in similar issues in the forum. I have no succeed doing it. What i have: Magento 2.4.3 Varnish Cache 6 (set to work at port 80) Apache (set to work at port 8081 for http traffic) Nginx (set as SSL reverse proxy at port […]
I’m using a query to provide data for my UI component. $catalogrule = $this->getTable('catalogrule'); $this->getSelect() ->reset(Zend_Db_Select::COLUMNS) ->columns(['s_id', 'created_at', 'created_by', 'sync_status', 'error']) ->joinRight( ['p' =>$catalogrule], 'main_table.magento_id = p.rule_id', ['entity_id' => 'p.rule_id','name' => 'p.name'] ) ->group('p.rule_id'); parent::_renderFiltersBefore(); but when I print this query using print_r($this->getSelect()->__toString()); SELECT `main_table`.`s_id`, `main_table`.`created_at`, `main_table`.`created_by`, `main_table`.`sync_status`, `main_table`.`error`, `p`.`rule_id` […]