I’m trying to install supervised installation of HA in OCI so i get all addons etc.
I created aarch64 instance with ubuntu 20.04 as it seemed closest to debian 11 and selected raspberryPi4 64 as the supervised version i’m going with. [I tried qemuarm-64 but got the same results]
Seems to be running
But I can’t access it on publicio:8123. Simply no response
root@has:/home/ubuntu# ufw status
Status: inactive
My guess is that issue is with ubuntu firewall or oracle created ubuntu firewall or something like that.
journalctl -f
reports no related errors currently
How to run (unsupported) supervised installation in oci and be able to access it?
Update:
Solution
apt install firewalld
firewall-cmd --permanent --add-port=8123/tcp
firewall-cmd --reload
firewall-cmd --list-ports
systemctl start firewalld
systemctl status firewalld
basically install the same firewall thing that is on oracle linux 8
sadly all addons end up with 502 bad gateway
tried
systemctl status iptables.service
systemctl start iptables.service
iptables -L
Update2: so i finally found a way to install debian in free OCI
mkdir -p /boot/efi/EFI/rescue && cd /boot/efi/EFI/rescue
wget https://boot.netboot.xyz/ipxe/netboot.xyz-arm64.efi
and evrything now seems to be working