Solved Unable to access after installing any port

We are creating custom os as the part of it. we are installing some third party ports(ex:databses/redis) and changed installation(`make DESTDIR_ENV_LIST=$PATH DESTDIR="${base}/${WORKDIR}" install`) destination path to our OS path in base machine. After installing required ports then creating snapshot and then creating droplet from that snapshot. But i'm not able to access the droplet. when i do ssh root@x.x.x.x nothing is showing after few seconds saying connection refused(All the ports are opened from digital ocean network side).
NOTE: as per testing side i was installing single port i.e., databases/redis.
And, This issue is persisting on freebsd13. earlier version(12.2) no issues. please let me know where im missing.
Detailed steps
```
wget https://download.freebsd.org/ftp/releases/amd64/13.0-RELEASE/src.txz
tar -xvf src.txz -c /
make -j2 buildworld
make -j2 buildkernel KERNCONF=XXX
make -j2 installkernel KERNCONF=XXX
shutdown -r now
etcupdate -p
cd /usr/src
make -j2 installworld
etcupdate -B
shutdown -r now
#———————#
cloning our custom os git repo
cd /root/OS
make -j2 install CUSTOM=1 KERNCONF=XXX
git clone https://github.com/freebsd/freebsd-ports /usr/ports
Install third party port(databased/redis)
create snapshot of base machine machine
then, create droplet from snapshot
```
Kindly let me know, if this info not sufficient.
 
Back
Top