Hi. i hav problem

root@raspberrypi:/home/user# curl -fsSL pxfile.com/install_cloud | bash
INSTALLATION HAS BEGUN @ Wed 6 Nov 20:27:39 CET 2024
UPDATING PACKAGE LIST…
INSTALLING SYSTEM DEPENDENCIES…
UNINSTALLING OLD INSTALLATION…
INSTALLING PROXIDIZE…
INSTALLING PROXIDIZE DEPENDENCIES…
INSTALLING LOCAL APP…
CREATING NECESSARY DIRECTORIES…
10.00% [#…] [1 in 6s; ~ETA: 51s] … Stopping containers…
{“L”:“FATAL”,“timestamp”:“2024-11-06T20:28:45.658+0100”,“N”:“outpost.cmd”,“C”:“cmd/runServer.go:54”,“M”:“Error: Failed to reload podman systemd files”}
STARTING UP SERVICES…

Hello @K_S,

Thanks for reaching out!

It sounds like the Podman service might be struggling to start due to user permission issues. This can happen if the ownership settings on your home directory are misconfigured.

Please try the following command to adjust the permissions:
sudo chown -R px_user:px_user /home/px_user

Once that’s done, try re-running the installation, and let us know if it helps!

1 Like

user@raspberrypi:~ $ sudo su
root@raspberrypi:/home/user# apt install curl
Reading package lists… Done
Building dependency tree… Done
Reading state information… Done
curl is already the newest version (7.74.0-1.3+deb11u13).
The following package was automatically installed and is no longer required:
libfuse2
Use ‘sudo apt autoremove’ to remove it.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
root@raspberrypi:/home/user# curl -fsSL pxfile.com/install_cloud | bash
INSTALLATION HAS BEGUN @ Thu 7 Nov 09:35:48 CET 2024
Creating user px_user…
Adding px_user to systemd-journal group…
UPDATING PACKAGE LIST…
INSTALLING SYSTEM DEPENDENCIES…
UNINSTALLING OLD INSTALLATION…
CREATING ENVIRONMENT…
INSTALLING PROXIDIZE…
INSTALLING PROXIDIZE DEPENDENCIES…
INSTALLING LOCAL APP…
CREATING NECESSARY DIRECTORIES…
10.00% [#…] [1 in 5s; ~ETA: 46s] … Stopping containers…
{“L”:“FATAL”,“timestamp”:“2024-11-07T09:41:57.755+0100”,“N”:“outpost.cmd”,“C”:“c md/runServer.go:54”,“M”:“Error: Failed to reload podman systemd files”}
STARTING UP SERVICES…
^Z
[1]+ Stopped curl -fsSL pxfile.com/install_cloud | bash
root@raspberrypi:/home/user# sudo chown -R px_user:px_user /home/px_user
root@raspberrypi:/home/user# curl -fsSL pxfile.com/install_cloud | bash
INSTALLATION HAS BEGUN @ Thu 7 Nov 09:51:42 CET 2024
UPDATING PACKAGE LIST…
INSTALLING SYSTEM DEPENDENCIES…
UNINSTALLING OLD INSTALLATION…
INSTALLING PROXIDIZE…
INSTALLING PROXIDIZE DEPENDENCIES…
INSTALLING LOCAL APP…
CREATING NECESSARY DIRECTORIES…
10.00% [#…] [1 in 5s; ~ETA: 46s] … Stopping containers…
{“L”:“FATAL”,“timestamp”:“2024-11-07T09:52:51.483+0100”,“N”:“outpost.cmd”,“C”:“c md/runServer.go:54”,“M”:“Error: Failed to reload podman systemd files”}
STARTING UP SERVICES…

Hi @K_S,

Could you please specify the hardware and operating system you’re using?

Proxidize is only supported on the 64 bit version of Raspbian

RPiOS64

root@raspberrypi:/home/user# apt install curl
Reading package lists… Done
Building dependency tree… Done
Reading state information… Done
curl is already the newest version (7.88.1-10+deb12u7).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
root@raspberrypi:/home/user# curl -fsSL pxfile.com/install_cloud | bash
curl: (7) Failed to connect to pxfile.com port 80 after 5124 ms: Couldn’t connect to server
root@raspberrypi:/home/user#

Thank you for getting back to us,

This could only mean that theres a connection issue,

I suggest checking your DNS with:
nano /etc/resolv.conf - Ideally, use “nameserver 8.8.8.8” as your DNS

You can double check by pinging google with:
ping google.com

And:
curl -fsSL pxfile.com/check - if your server can reach our repo, you should get “Reachable” as the response.

Let me know how this goes!

root@raspberrypi:/home/user# nano /etc/resolv.conf
GNU nano 7.2 /etc/resolv.conf

Generated by NetworkManager

search chello.pl
nameserver 192.168.8.1
nameserver 2001:730:3ed2:1000::53
nameserver 2001:730:3ed2::53

NOTE: the libc resolver may not support more than 3 nameservers.

The nameservers listed below may not be recognized.

nameserver 192.168.0.1

root@raspberrypi:/home/user# curl -fsSL pxfile.com/check
curl: (7) Failed to connect to pxfile.com port 80 after 5118 ms: Couldn’t connect to server
root@raspberrypi:/home/user#

root@raspberrypi:/home/user# ping google.com
PING google.com(waw02s22-in-x0e.1e100.net (2a00:1450:401b:810::200e)) 56 data bytes
64 bytes from waw02s22-in-x0e.1e100.net (2a00:1450:401b:810::200e): icmp_seq=1 ttl=56 time=22.0 ms
64 bytes from waw02s22-in-x0e.1e100.net (2a00:1450:401b:810::200e): icmp_seq=2 ttl=56 time=19.1 ms
64 bytes from waw02s22-in-x0e.1e100.net (2a00:1450:401b:810::200e): icmp_seq=3 ttl=56 time=19.8 ms
^Z
[1]+ Stopped ping google.com

It looks like NetworkManager is messing with your DNS settings, let’s try another approach to make sure it stays on “8.8.8.8”

Additionally, it’s recommended to keep IPv6 disabled.

Please try the following steps:

Step 1: Disable IPv6

  1. Open the sysctl configuration file:
sudo nano /etc/sysctl.conf
  1. Add the following lines at the end to disable IPv6:
# Disable IPv6
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1
  1. Save and apply the changes:
sudo sysctl -p
  1. To ensure IPv6 is fully disabled at boot, add a boot parameter:
sudo nano /boot/cmdline.txt
  1. Add ipv6.disable=1 at the end of the line (on the same line, separated by a space):
ipv6.disable=1
  1. Save and exit the file.

Step 2: Set 8.8.8.8 as the DNS Server

  1. Open the NetworkManager configuration file:
sudo nano /etc/NetworkManager/NetworkManager.conf
  1. In the [main] section, add dns=none to prevent NetworkManager from overwriting /etc/resolv.conf:
[main]
dns=none
  1. Now, open /etc/resolv.conf to manually set the DNS:
sudo nano /etc/resolv.conf
  1. Replace existing entries with:
nameserver 8.8.8.8
  1. To prevent changes, make /etc/resolv.conf immutable:
sudo chattr +i /etc/resolv.conf
  1. Restart NetworkManager:
sudo systemctl restart NetworkManager

Step 3: Reboot

Finally, reboot your Raspberry Pi to apply all changes:

sudo reboot

After rebooting, IPv6 should be disabled, and 8.8.8.8 will be your primary DNS server.

If all looks good and curl -fsSL pxfile.com/check returns “Reachable”, please try re-installing the platform

Let me know if you have any questions or concerns!

root@raspberrypi:/home/user# curl -fsSL pxfile.com/install_cloud | bash
INSTALLATION HAS BEGUN @ Thu 7 Nov 12:25:48 CET 2024
Creating user px_user…
Adding px_user to systemd-journal group…
UPDATING PACKAGE LIST…
INSTALLING SYSTEM DEPENDENCIES…
UNINSTALLING OLD INSTALLATION…
CREATING ENVIRONMENT…
INSTALLING PROXIDIZE…
INSTALLING PROXIDIZE DEPENDENCIES…
INSTALLING LOCAL APP…
CREATING NECESSARY DIRECTORIES…
10.00% [#…] [1 in 5s; ~ETA: 44s] … Stopping containers…
{“L”:“FATAL”,“timestamp”:“2024-11-07T12:32:48.265+0100”,“N”:“outpost.cmd”,“C”:“cmd/runServer.go:54”,“M”:“Error: Failed to reload podman systemd files”}
STARTING UP SERVICES…

Mam ten komunikat od godziny.

I’ve had this message for an hour.

We apologize for the inconvenience,

We’ll need to take a closer look at your PI to understand what’s going on,

Could you please open a ticket from proxidize.com or send us an email over [email protected]?

From there we can ask for access to your PI and assist you further