- Notifications
You must be signed in to change notification settings - Fork66
Description
I reported this already in the appstore issue-tracker:nextcloud/appstore#1137
I'm posting this here, because I observed this behavior only when the AppstoreFetcher is called byserverinfo
.
Steps to reproduce
- make sure apps.nextcloud.com is accessible:
serverprompt:~# echo -e "\nResponse-Code: $(curl -Lo /dev/null -w "%{http_code}" apps.nextcloud.com)\n==================\n" % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed100 320 100 320 0 0 8396 0 --:--:-- --:--:-- --:--:-- 8421100 301k 100 301k 0 0 271k 0 0:00:01 0:00:01 --:--:-- 319kResponse-Code: 200==================
- tail -f your logfile:
tail -F $(nextcloud logfile) | jq
and keep it open - open serverinfo in a browser tab
- whait for log message as below.
- close serverinfo tab, since the message repeates every 5 minutes.
- recheck accessibility as under 1:
serverprompt:~# echo -e "\nResponse-Code: $(curl -Lo /dev/null -w "%{http_code}" apps.nextcloud.com)\n==================\n" % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to apps.nextcloud.com port 80 after 22 ms: Connection refusedResponse-Code: 000==================
Expected behaviour
no impairments in the connection to apps.nextcloud.com
Actual behaviour
The affected IP get banned/blocked by apps.nextcloud.com.
Since it is my home network, I can easily fetch a new IP but every time a serverinfo tab is opened (no matter what instance, even newly setup in a virtual machine) it get banned again.
Because in my case it's the WAN Ip of my home network, i can not reach the appstore in my browser eather.
Server configuration
Operating system:
Ubuntu 22.04.3 LTS
Web server:
Apache2
Database:
MySQL and PostgeSQL
PHP version:
8.1.0 and 8.2.10
Nextcloud version: (see Nextcloud admin page)
27+
Client configuration
Browser:
Chrome, Brave, Opera
Operating system:
Windows, Linux, Mac
Nextcloud log (data/owncloud.log)
{ "reqId": "5snl2JvDWBJ4eLJYKjN7", "level": 2, "time": "2023-09-14T08:46:28+02:00", "remoteAddr": "192.168.188.36", "user": "ernolf", "app": "appstoreFetcher", "method": "GET", "url": "/apps/serverinfo/update", "message": "Could not connect to appstore: cURL error 7: Failed to connect to apps.nextcloud.com port 443 after 41 ms: Connection refused (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://apps.nextcloud.com/api/v1/apps.json", "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36", "version": "27.1.0.5", "data": { "app": "appstoreFetcher" }}
My workaround:
coment this line:
serverinfo/lib/SystemStatistics.php
Line 74 in544bacf
'apps' =>$this->getAppsInfo() |
//'apps' => $this->getAppsInfo()
I hope this helps.