What is Cause of this Error and How to Fix? : Got error 'Primary script unknown'

I’m hoping someone can help explain what causes this and how to resolve. I’ve noticed this error message in my apache log file (/var/log/apache2/error.log) since I built a new server with HestiaCP. These errors have appeared consistently over the past 3 weeks. They all appear to originate from either Russia or China, so I assume they are bots or someone trying to hack the server.

Can someone please help me understand what causes this and if it’s normal or how to address it. Thanks!

[Sun May 02 15:33:20.087721 2021] [proxy_fcgi:error] [pid 282194:tid 139630275958528] [client 178.33.64.76:44776] AH01071: Got error 'Primary script unknown'
[Sun May 02 15:33:23.291727 2021] [proxy_fcgi:error] [pid 282195:tid 139630275958528] [client 178.33.64.76:0] AH01071: Got error 'Primary script unknown'
[Sun May 02 15:33:23.641145 2021] [proxy_fcgi:error] [pid 282195:tid 139630225602304] [client 178.33.64.76:0] AH01071: Got error 'Primary script unknown'
[Sun May 02 15:49:01.720911 2021] [proxy_fcgi:error] [pid 282194:tid 139630423525120] [client 85.119.151.254:2671] AH01071: Got error 'Primary script unknown', referer: https://best-proxies.ru/
[Sun May 02 16:18:21.318447 2021] [proxy_fcgi:error] [pid 282194:tid 139630242387712] [client 85.119.151.253:27661] AH01071: Got error 'Primary script unknown', referer: https://best-proxies.ru/
[Sun May 02 19:15:47.470944 2021] [proxy_fcgi:error] [pid 282195:tid 139630415132416] [client 85.119.151.254:49301] AH01071: Got error 'Primary script unknown', referer: https://best-proxies.ru/
[Sun May 02 19:17:08.144262 2021] [proxy_fcgi:error] [pid 282195:tid 139630233995008] [client 85.119.151.253:44899] AH01071: Got error 'Primary script unknown', referer: https://best-proxies.ru/

Btw, I was previously given this link:

But honestly, I can’t follow or understand what they are talking about.

In case it helps, all of the websites that run on my server are Wordpress.

I’m looking for someone that has experienced this issue and knows how to resolve it. I would greatly appreciate if someone can provide the steps to resolve this issue. E.g. Is there a setting that needs to be changed on the server, some text that needs to be added to a .htaccess file. The linked article is a bit all over the place and references both APACH + NGINX and Apache only and is not very clear on what the actual issue is.

yes. random bots throwing random requests at your server/domains hoping for finding some known vulnerability. they don’t care what you have on there, they are simply trying to find one of a million holes. welcome to the public internet. get used to it. ignore it. make sure you don’t use insecure software/plugins/etc.

if you want to cut down the noise a bit, you can try adding some ipsets against bad bots and known malicious IPs. there also are some filters you might add to fail2ban that can be triggered by such errors and ban IPs for a while.

the issue still will always simply be that running a public server/website attracts that kind of blind attacks. you cannot ban them all anyway.

Thanks @falzo for the quick response. I value your input and advice and always appreciate your help and/or pointing me in the right direction.

I’m still trying to figure out if this is something .htaccess or server configuration-related. Eris previously posted that link I provided above.

The second link provided in that discussion was to this page:
Got error 'Primary script unknown' after update PHP-FPM + Apache 2.4 - coders.pro.

Which speaks about an issue with .htaccess files and after an upgrade of php-fpm. I never had these errors before in my logs when I was running VestaCP on Apache. The HestiaCP server is slightly different in that it’s using php-fpm. So that’s why I think it may be something related to the .htaccess files or the configuration since I moved to this new server.

I came across another forum post on DigitalOcean, also referencing a potential issue with configuration issues with Apache or .htaccess file: Understanding apache.error.log message? | DigitalOcean. Unfortuantely, no answer was provided there.

So I’m just trying to rule this out. I can’t really mess with the .htaccess file as its all auto generated from Wordpress. So I’m trying to understand what’s causing this and how to solve it. If it’s legit traffic, I would hate to have it not serving the pages to valid users.

If it’s just noise, I can definitely ignore it, but it seems that the other people commenting on these posts are saying it’s an apache configuration issue. That’s why I’m trying to rule that out.

Thanks!

the thing the guy is doing there is simply changing the priorities of the rewrite rules by moving them around and he has a certain path involved, which might really exist on his system and the error in his specific case most likely was really related to that.

in your case you still see random foreign requests searching for anything. yes of course the error message might have changed due to changing the way apache is handling requests for php files now. when it was prefork, apache would already try to find the file and then run it internally via mod-php. now it simply passes the request on to php-fpm and won’t care much about the rest.

I am pretty sure it’s not. simply match the timestamp and IP towards the requests in the related access.log to see what the full request was. most likely you will see random stuff that cannot exist on your system or is at least not directly accessible for a reason…

1 Like

Just checked my server logs… Al the ip addresses came from a Amazone / AWS static ip. I don’t it is legit traffic but just bots that trying it out.

2 Likes

Thank you both!

@falzo - thank you for the very informative response. A lot of good knowledge in there. Actually, that was the other question I forgot to ask. How do I figure out where this error is coming from. There is not much detail in the error itself and I can’t seem to tell which domain/site is even being accessed that is causing this error. The error is in the /var/log/apache2/error.log

[Sun May 02 15:49:01.720911 2021] [proxy_fcgi:error] [pid 282194:tid 139630423525120] [client 85.119.151.254:2671] AH01071: Got error 'Primary script unknown', referer: https://best-proxies.ru/

From the above entry, how can I tell which access.log to check?

cat /var/log/apache2/access.log shows an empty file. So I assume you mean I should check the domain/website log files.

I realized these files are in the domains folder under sitename.tld.log, but is there a way to know which ones I should check based on the above error message? Or I just need to go through and check one by one. It seems there should be a better way.

Access logs for domains are located in:

/var/log/apache2/domains/domain.tld.log

1 Like

Thanks @eris! I just realized this and updated my last comment.

For some reason, I couldn’t see through all the logrotates of the error.log and the .byte. I just realized they are there as you explained.

So do I need to go through one by one to match up the access time or is there a better way. Thanks!

the your.domain.com.log files in the domains folder are the access logs per domain…

apart from that the easiest way to start investigating is running something like:

find /var/log/apache2 -type f -exec grep '12.34.56.78' {} \; -print

this should get you all the entries related to an offending IP and also print which file they are in. once you found that you can analyse in more detail…

PS: in general, the related access log should be on the same level as the error log where you found the message. so it’s either under domains in the according domain.error.log or if in the general error.log in apache2 folder the request probably wasn’t even specific to an existing web-domain.

1 Like

Thanks! That’s a much smarter way. :wink:

I will give that a go.

So, interesting outcome. Nothing came up in the access files.

I ran this:

find /var/log/apache2 -type f -exec grep '85.119.151.254' {} \; -print

and got this:

root@srv01:/var/log/apache2/domains# find /var/log/apache2 -type f -exec grep '85.119.151.254' {} \; -print
[Thu Apr 29 15:51:00.833837 2021] [proxy_fcgi:error] [pid 972004:tid 139807493650176] [client 85.119.151.254:49483] AH01071: Got error 'Primary script unknown', referer: https://best-proxies.ru/
[Fri Apr 30 03:52:10.523030 2021] [proxy_fcgi:error] [pid 860:tid 139630183638784] [client 85.119.151.254:41247] AH01071: Got error 'Primary script unknown', referer: https://best-proxies.ru/
[Fri Apr 30 10:19:07.029368 2021] [proxy_fcgi:error] [pid 860:tid 139630415132416] [client 85.119.151.254:3603] AH01071: Got error 'Primary script unknown', referer: https://best-proxies.ru/
/var/log/apache2/error.log.1
[Sun May 02 15:49:01.720911 2021] [proxy_fcgi:error] [pid 282194:tid 139630423525120] [client 85.119.151.254:2671] AH01071: Got error 'Primary script unknown', referer: https://best-proxies.ru/
[Sun May 02 19:15:47.470944 2021] [proxy_fcgi:error] [pid 282195:tid 139630415132416] [client 85.119.151.254:49301] AH01071: Got error 'Primary script unknown', referer: https://best-proxies.ru/
[Sun May 02 22:16:54.379672 2021] [proxy_fcgi:error] [pid 282194:tid 139630326314752] [client 85.119.151.254:64897] AH01071: Got error 'Primary script unknown', referer: https://best-proxies.ru/
[Mon May 03 04:21:30.525165 2021] [proxy_fcgi:error] [pid 282195:tid 139630267565824] [client 85.119.151.254:49859] AH01071: Got error 'Primary script unknown', referer: https://best-proxies.ru/
[Mon May 03 09:48:41.989022 2021] [proxy_fcgi:error] [pid 369521:tid 139630225602304] [client 85.119.151.254:36331] AH01071: Got error 'Primary script unknown', referer: https://best-proxies.ru/
[Mon May 03 10:18:15.029896 2021] [proxy_fcgi:error] [pid 282194:tid 139630284351232] [client 85.119.151.254:48389] AH01071: Got error 'Primary script unknown', referer: https://best-proxies.ru/
/var/log/apache2/error.log
root@srv01:/var/log/apache2/domains#

So it seems there is no entry for that IP address in any of the access logs, only in the error logs. Also I made sure to test the find command by using an IP address I see hitting one of my domains in one of the domain.tld.log file and it came back with the expected results.

So it seems there is no access logged by this IP address. Why would that be? I will test a few others from the error.log file that I found to see if they also turn up nothing.

Same result for the others. I also tried these two IP addresses as well:

[Sun May 02 09:48:43.705019 2021] [proxy_fcgi:error] [pid 282195:tid 139630406739712] [client [109.234.153.133:2445](http://109.234.153.133:2445/)] AH01071: Got error 'Primary script unknown', referer:
[Sun May 02 15:33:19.726826 2021] [proxy_fcgi:error] [pid 282194:tid 139630183638784] [client [178.33.64.76:43096](http://178.33.64.76:43096/)] AH01071: Got error 'Primary script unknown'

root@srv01:/var/log/apache2/domains# find /var/log/apache2 -type f -exec grep '178.33.64.76' {} \; -print
[Sun May 02 15:33:19.726826 2021] [proxy_fcgi:error] [pid 282194:tid 139630183638784] [client 178.33.64.76:43096] AH01071: Got error 'Primary script unknown'
[Sun May 02 15:33:20.087721 2021] [proxy_fcgi:error] [pid 282194:tid 139630275958528] [client 178.33.64.76:44776] AH01071: Got error 'Primary script unknown'
[Sun May 02 15:33:23.291727 2021] [proxy_fcgi:error] [pid 282195:tid 139630275958528] [client 178.33.64.76:0] AH01071: Got error 'Primary script unknown'
[Sun May 02 15:33:23.641145 2021] [proxy_fcgi:error] [pid 282195:tid 139630225602304] [client 178.33.64.76:0] AH01071: Got error 'Primary script unknown'
/var/log/apache2/error.log
root@srv01:/var/log/apache2/domains#

No entry in the access logs. Any ideas?

But as you say, if it’s just noise and I can ignore it (i.e. it’s not an issue with configuration or .htaccess files), I will just ignore it going forward when I see it in log files.

if it is not in the error log of the domain itself, it is far away from having anything to do with your htaccess. because that means exactly that: it does not even have a domain related vhost involved.

it is probably some request hitting the IP directly and not even a domain name. or an old domain name of a former owner of that IP that might still point there but does not exist in your setup. that’s why it ends up in the general apache2 log.

I just checked and /var/log/apache2/access.log is empty on my servers too. logging at that level is probably just not configured or turned off on purpose because everything there is wrong traffic anyway. to be fair I am too lazy to dig that up now. it’s noise and I rather prefer to not have that noise fill up my logfiles on top.

TL;DR; ignore it.

1 Like

Thanks @falzo! I will ignore it. I appreciate yours and eris wealth of knowledge.

And that makes more sense, given I changed the IP address of the server, when I built the new DigitalOcean droplet for this HestiaCP server.

It’s a bit late now, but if I were to do it again, I think it would have been better to build the server and then restore the image onto the existing server IP address. As I have had that IP for many years. I notice that Gmail is rate limiting some of the email I am forwarding over to them. I don’t know if this is because of the new IP address on the server or other things I need to check, but perhaps it’s related.

Anyway, another battle for another day. Thanks so much!

most likely. IPs earn a reputation (good or bad) over time, especially when it comes to mail. forwarding on top is a rather bad practise nowadays because your system will also forward spam mails and for gmail the origin of these spam mails are your IP and therefore it will hurt its reputation.

but as you said, that definitely is a totally different battle and an even more complex one.

Indeed, that’s why I typically implement spam assassin with strict rules and I have the server delete anything with a spam score over 10. This way it doesn’t get forwarded on to gmail. I had that battle in the past and I think it resolved itself. I’m guessing it could be just because this is a new IP address and I need to improve the reputation.

Btw, while I was investigating the above issue, I noticed that my apache error.log was flooded with these phpmyadmin failed to load errors. There is more than 100 of them and all within seconds of each other.

I assume this is some kind of brute-force attack? Is this just noise or something I should look into? Thanks!

[Mon May 03 23:57:10.064910 2021] [proxy_fcgi:error] [pid 508395:tid 139630275958528] [client 78.138.43.43:0] AH01071: Got error 'PHP message: phpmyadmin: Failed to load /var/lib/phpmyadmin/config.inc.php Check group www-data has read access and open_basedir restrictions.'
[Mon May 03 23:57:11.928087 2021] [proxy_fcgi:error] [pid 508395:tid 139630423525120] [client 78.138.43.43:0] AH01071: Got error 'PHP message: phpmyadmin: Failed to load /var/lib/phpmyadmin/config.inc.php Check group www-data has read access and open_basedir restrictions.'
[Mon May 03 23:57:17.449325 2021] [proxy_fcgi:error] [pid 508396:tid 139630275958528] [client 78.138.43.43:0] AH01071: Got error 'PHP message: phpmyadmin: Failed to load /var/lib/phpmyadmin/config.inc.php Check group www-data has read access and open_basedir restrictions.'
[Mon May 03 23:57:20.438889 2021] [proxy_fcgi:error] [pid 508396:tid 139630166853376] [client 78.138.43.43:0] AH01071: Got error 'PHP message: phpmyadmin: Failed to load /var/lib/phpmyadmin/config.inc.php Check group www-data has read access and open_basedir restrictions.'
[Mon May 03 23:57:23.523171 2021] [proxy_fcgi:error] [pid 508395:tid 139630250780416] [client 78.138.43.43:0] AH01071: Got error 'PHP message: phpmyadmin: Failed to load /var/lib/phpmyadmin/config.inc.php Check group www-data has read access and open_basedir restrictions.'
[Mon May 03 23:57:30.932029 2021] [proxy_fcgi:error] [pid 508396:tid 139630431917824] [client 78.138.43.43:0] AH01071: Got error 'PHP message: phpmyadmin: Failed to load /var/lib/phpmyadmin/config.inc.php Check group www-data has read access and open_basedir restrictions.'
[Mon May 03 23:57:33.716355 2021] [proxy_fcgi:error] [pid 508396:tid 139630259173120] [client 78.138.43.43:0] AH01071: Got error 'PHP message: phpmyadmin: Failed to load /var/lib/phpmyadmin/config.inc.php Check group www-data has read access and open_basedir restrictions.'
[Mon May 03 23:57:34.829349 2021] [proxy_fcgi:error] [pid 508395:tid 139630183638784] [client 78.138.43.43:0] AH01071: Got error 'PHP message: phpmyadmin: Failed to load /var/lib/phpmyadmin/config.inc.php Check group www-data has read access and open_basedir restrictions.'
[Mon May 03 23:57:35.815561 2021] [proxy_fcgi:error] [pid 508396:tid 139630267565824] [client 78.138.43.43:0] AH01071: Got error 'PHP message: phpmyadmin: Failed to load /var/lib/phpmyadmin/config.inc.php Check group www-data has read access and open_basedir restrictions.'
[Mon May 03 23:57:37.018177 2021] [proxy_fcgi:error] [pid 508396:tid 139630301136640] [client 78.138.43.43:0] AH01071: Got error 'PHP message: phpmyadmin: Failed to load /var/lib/phpmyadmin/config.inc.php Check group www-data has read access and open_basedir restrictions.'
[Mon May 03 23:57:40.856900 2021] [proxy_fcgi:error] [pid 508395:tid 139630284351232] [client 78.138.43.43:0] AH01071: Got error 'PHP message: phpmyadmin: Failed to load /var/lib/phpmyadmin/config.inc.php Check group www-data has read access and open_basedir restrictions.'
[Mon May 03 23:57:42.908818 2021] [proxy_fcgi:error] [pid 508396:tid 139630225602304] [client 78.138.43.43:0] AH01071: Got error 'PHP message: phpmyadmin: Failed to load /var/lib/phpmyadmin/config.inc.php Check group www-data has read access and open_basedir restrictions.'
[Mon May 03 23:57:43.865481 2021] [proxy_fcgi:error] [pid 508396:tid 139630175246080] [client 78.138.43.43:0] AH01071: Got error 'PHP message: phpmyadmin: Failed to load /var/lib/phpmyadmin/config.inc.php Check group www-data has read access and open_basedir restrictions.'

It seems are all from the same IP 78.138.43.43. My guess is that you have some misconfiguration somewhere in your server. Just my 2p opinion.

Known issue we should adress in 1.4

1 Like