alright after a few months of using AlbyHub connected to my own Lightning node, no custodial, with vanity getalby lightning address I am DISAPPOINTED.

Keeps logging me out. At first it was once a month. Before I went on vacation I made sure to log back in the day before. Low and behold my node was logged out of AlbyHub on my third day in the carribean at the restort to my dismay and I had to resort to swithcing to WOS temporarly just to be able to donate and tip.

Any suggestions for a working non custodial alternative with vanity LN address and works well with nostr please advise, much appreciation with sats.

I would use BlixtWallet with all my heart if it worked properly with nostr but last time i tried (3 or for months ago, it still didn't, hopefully does soon) The only other one I can think of is Pheonix wallet but doesnt really work with your own node unless im wrong.

help!

Reply to this note

Please Login to reply.

Discussion

# 👀🇧🇷GN

Thanks! I sincerely appreciate the input and maybe i need to look at their website in more detail...but...

why would I do that?

run it on someone else's computer???

I might as well stick to walletof satoshi at that point no?

my nostr relay and lightning node and all apps on Star9 were uninterrupted...and I self host that on my machines at home for free.

its only the alby connection that was logged out, where it was happening once a month, now it happened the day after I logged in again but was away on vacation and had to switch my LN address to WOS.

are you looking just for a solution to receove sats on an ln address to your lightning node?

Just an alternative solution, no need to risk opening up your own personal home node and firewall etc

Six months of Albyhub and was only once logged out (on Oracle VPS), due to the relay down.

If running baremetal, perhaps router performing firmware updates and server loosing connection for a few minutes in the middle of the night?

If you're running the latest Albyhub, there seems to be now an option for auto login.

router was never interrupted as indicated by all other devices on the network, no new version of firmware in the last 6 months. Running latest Alby Hub since before this happened over the past week. Was there a new release during the last 7 days? maybe thats why?

I have a fiber optic to the home, glass cable into my basement, everything is ethernet, all devices even some tablets connected to ethernet, mobile phones and 2 security cam excepted. Even the wifi devices didnt lose connection.

Lightning channels stayed up and running too. Node up time shows 6 months.

Common denominator is Alby from my analysis.

It does sound strange. What version of Albyhub currently?

Is it on x86 or aarch64(ARM) machine?

If the latter, in case you're running a Debian/Ubuntu on a Pi or similar ARM, and you can stomach some shell scripting, find below a script that automatically updates to the latest from github. Depends on gnupg and jq (json parser). Every time you run the update, you must log in to unlock the wallet.

However, Settings > Auto Unlock is now a feature. Best only use it on baremetal, which is your case. The password is stored in the local machine WITHOUT encryption, so anybody with access to that machine could potentially steal all your funds.

### SCRIPT STARTS HERE ###

#!/bin/sh

# Dependencies: jq gnupg

INIT_DIR="$(pwd)"

VERSION=$(curl -s "https://api.github.com/repos/getAlby/hub/releases/latest" | jq '.tag_name' | tr -d '"')

ALBYHUB_FILE="albyhub-Server-Linux-aarch64.tar.bz2"

# clean up function

cleanUp() {

rm "$ALBYHUB_FILE" manifest*

cd $INIT_DIR

}

echo "\n --> Updating Alby Hub...\n"

# stop running process

sudo systemctl stop albyhub

# create backup of current instance

cd /opt/albyhub

test -d albyhub-backup && rm -rf albyhub-backup

mkdir albyhub-backup

mv bin albyhub-backup

mv lib albyhub-backup

cp -r data albyhub-backup

# Download new artifacts

wget --show-progress -q "https://github.com/getAlby/hub/releases/download/$VERSION/$ALBYHUB_FILE"

wget --show-progress -q "https://github.com/getAlby/hub/releases/download/$VERSION/manifest.txt"

wget --show-progress -q "https://github.com/getAlby/hub/releases/download/$VERSION/manifest.txt.asc"

# import gpg keys

echo "\n --> import dev keys...\n"

curl https://raw.githubusercontent.com/getalby/hub/master/scripts/keys/rolznz.asc | gpg --import

# validating download

echo "\n --> validating release...\n"

gpg --verify manifest.txt.asc manifest.txt && VALIDATION=0

echo ""

HASHED=$(shasum -a 256 "$ALBYHUB_FILE" | cut -f 1 -d ' ')

HASH_SIG="$(cat manifest.txt | grep $ALBYHUB_FILE | cut -f 1 -d ' ')"

if [ "$HASHED" = "$HASH_SIG" -a $VALIDATION = 0 ]; then

echo "\n --> release verified...\n"

# Extract archives

tar -xvf "$ALBYHUB_FILE"

#Clean up function

cleanUp

# restart instance

sudo systemctl start albyhub && echo "\n --> AlbyHub server RESTARTED"

echo "\n --> ✅ Update COMPLETED ✅\n\n --> Login to restart wallet <--\n"

else

echo "\n --> hash failed\n"

cleanUp # Clean Up Function

return 1

fi