Benjamin Loison
Benjamin Loison
```bash sudo service apache2 status | cat ``` Output: ``` ● apache2.service - The Apache HTTP Server Loaded: loaded (/usr/lib/systemd/system/apache2.service; enabled; preset: enabled) Active: active (running) since Sat 2024-09-14 21:39:03...
Using FileZilla: ```bash diff -qr apache2-{official,private}-instance ``` Output: ``` Files apache2-official-instance/apache2.conf and apache2-private-instance/apache2.conf differ Only in apache2-official-instance: apache2.conf.dpkg-dist Only in apache2-official-instance/conf-available: php8.3-cgi.conf Files apache2-official-instance/mods-available/mpm_event.conf and apache2-private-instance/mods-available/mpm_event.conf differ Files apache2-official-instance/mods-available/mpm_prefork.conf and...
Probably related to #165.
```bash find /etc/apache2/ -name 'mpm_prefork' ``` Source: [the Stack Overflow answer 46173001](https://stackoverflow.com/a/46173001) does not return anything. ```bash find /etc/apache2/ -name 'mpm_prefork*' ``` ``` /etc/apache2/mods-available/mpm_prefork.load /etc/apache2/mods-available/mpm_prefork.conf /etc/apache2/mods-enabled/mpm_prefork.load /etc/apache2/mods-enabled/mpm_prefork.conf ``` Source: [the...
Maybe YouTube Data API v3 servers involve this latency. From the official instance: ```bash time curl -s 'https://www.googleapis.com/youtube/v3/videos?part=snippet&id=_ZPpU7774DQ&key=AIzaSyDXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX' ``` ``` ... real 0m0.077s user 0m0.041s sys 0m0.005s ``` with correct...
[The Server Fault question 383526](https://serverfault.com/q/383526) may help. ```bash find /etc/apache2/ -name *mpm* ``` ``` /etc/apache2/mods-available/mpm_event.load /etc/apache2/mods-available/mpm_worker.conf /etc/apache2/mods-available/mpm_worker.load /etc/apache2/mods-available/mpm_prefork.load /etc/apache2/mods-available/mpm_prefork.conf /etc/apache2/mods-available/mpm_event.conf /etc/apache2/mods-enabled/mpm_prefork.load /etc/apache2/mods-enabled/mpm_prefork.conf ```
```bash a2dismod mpm_prefork ``` ``` ERROR: The following modules depend on mpm_prefork and need to be disabled first: php8.3 ``` ```bash a2enmod mpm_worker ``` ``` Considering conflict mpm_event for mpm_worker:...
```bash apachectl -V | grep -i mpm ``` ``` Server MPM: prefork ``` Source: [the Ask Ubuntu answer 525035](https://askubuntu.com/a/525035) No DuckDuckGo or Google result for `"ERROR: The following modules depend...
[The Stack Overflow answer 67538339](https://stackoverflow.com/a/67538339): ```bash sudo a2dismod php8.3 mpm_prefork ``` ``` ERROR: /etc/apache2/mods-enabled/php8.3.load is not a symbolic link, not deleting Module php8.3 disabled. ERROR: The following modules depend on...
DuckDuckGo and Google results for *install apache2 mpm worker* are not clear too.