View Single Post
Old 4th June 2022
gordon.f gordon.f is offline
Fdisk Soldier
 
Join Date: Oct 2021
Location: Europe
Posts: 60
Default

Quote:
Originally Posted by jggimi View Post
I can see your screenshot, thank you.

The error at the beginning of the message is what you should focus on. It is an HTTP 404 error: "Not Found". But the message doesn't tell you what file was not found. There is a possibility that whatever produced this message has logged more information, either in /var/www/logs/error.log, or possibly in /var/log/php-fpm.log. Perhaps not.
Code:
>>>cat /var/www/logs/error.log
returns "Primary script unknown"

Code:
>>>cat /var/log/php-fpm.log
returns
Code:
[04-Jun-2022 14:56:54] NOTICE: fpm is running, pid 10859
[04-Jun-2022 14:56:54] NOTICE: ready to handle connections
[04-Jun-2022 15:00:45] NOTICE: Terminating ...
[04-Jun-2022 15:00:45] NOTICE: exiting, bye-bye!
[04-Jun-2022 15:00:46] NOTICE: fpm is running, pid 14895
[04-Jun-2022 15:00:46] NOTICE: ready to handle connections
[04-Jun-2022 15:06:23] NOTICE: Terminating ...
[04-Jun-2022 15:06:23] NOTICE: exiting, bye-bye!
[04-Jun-2022 15:06:24] NOTICE: fpm is running, pid 47527
[04-Jun-2022 15:06:24] NOTICE: ready to handle connections
There are other lines from this day but they are just same as the lines above.

I didn't understand why I couldn't see the index.php page without restarting php74_fpm.


EDIT: I was trying to create a new user and got this message too.
Code:
rcctl check mysqld
mysqld(ok)
Code:
mysql_install_db                                                    
WARNING: The host 'my_system.net' could not be looked up with /usr/local/bin/resolveip.
This probably means that your libc libraries are not 100 % compatible
with this binary MariaDB version. The MariaDB daemon, mysqld, should work
normally with the exception that host name resolving will not work.
This means that you should use IP addresses instead of hostnames
when specifying MariaDB privileges !
mysql.user table already exists!
Run mysql_upgrade, not mysql_install_db

Last edited by gordon.f; 4th June 2022 at 12:46 PM.
Reply With Quote