Setting up abra for the first time #641
Closed
opened 2024-10-09 12:42:33 +00:00 by dphiffer
·
4 comments
Labels
Clear labels
abra
awaiting-feedback
backups
bug
build
ci/cd
community organising
contributing
coopcloud.tech
design
documentation
duplicate
enhancement
fedi
fedi-infra
finance
funding
good first issue
help wanted
installer
legal
performance
proposal
question
security
test
wontfix
Everything to do with abra
Ping/pong on comms
Something is not working
Go build related issues
Getting the robots into the mix
Opening this thing up
Contributors stuff
Our main website
Design thinking required
Let's write things together
This issue or pull request already exists
New feature
Democratic decision making
Money things
Anything related to grant funding
Easy start with development
Need some help
Installation related issues
Performance related
Large change which requires feedback & decisin making
More information is needed
Securing our shit
Unit or integration test suite
This won't be fixed
No labels
Milestone
No items
No Milestone
Projects
Clear projects
No projects
Assignees
3wordchant
aadil (Aadil Ayub)
abra-bot (Abra Bot)
ammaratef45
amras (Sarma)
Apfelwurm
BornDeleuze
Brooke
carla
cas (Cassowary)
coopcloud
cyrnel
decentral1se (d1)
dede
devydave
fauno (fauno)
iexos
jade (Jade Ambrose)
jjsfunhouse
jmakdah2 (Jackie Makdah)
joe-irving (Joe Irving)
kawaiipunk (KawaiiPunk)
knoflook
kolaente
lambdabundesverband
linnealovespie (April)
moosemower
moritz
notplants
oxaliq (sorrel)
p4u1
pharaohgraphy (Andrew 🐦🔥❤️🔥✴️)
renovate-bot (Comrade Renovate Bot)
ripclap
simon
sixsmith (Sixsmith)
stevensting
trav (Trav Fryer)
val (val (he/him))
yksflip
Clear assignees
No Assignees
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: toolshed/organising#641
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
I'm still learning how all of this works and so far it's very impressive! Apologies if I'm missing an obvious detail. While going through the New Operator Tutorial I got stuck on the step for adding a new server:
For reference, here is what I have in my
.ssh/config, the port 22 part of the error looks like a likely culprit:And I did double check that I can ssh into the server:
I'm doing all of this from macOS 15.0.1 (24A348) running OpenSSH_9.8p1, LibreSSL 3.3.6.
@dphiffer thanks for the kind words!
We've reworked how SSH connection details are implemented in the latest unreleased version of
abraso as to avoid problems like this going forward. Sorry for this blocker...In the stack, I see "connect to host hypha.social.coop port 22: Operation timed out". So, it seems somehow,
abrais somehow turningsocial.coopon the command-line tohypha.social.coopon the lookup in~/.ssh/config.I would probably hack something together like:
Or even maybe
Host social.coop hypha.social.coop.Sharing any
--debugoutput would be appreciated.But yeh, we're removed most of this logic and rely on SSH itself to resolve this stuff going forward. Hopefully a release is forthcoming in the near future!
Lemme know if you get further with this and thanks for the patience!
Thanks for the response, and sorry for the slow reply.
I updated my
.ssh/configto match your suggestion:Here's what I see now:
It's a new error, so progress! I have a suspicion that my user account on the server needs more privileges to work with the running Docker containers, but I'm not sure where to go from here.
hey @dphiffer nice!
yeh that "Cannot connect to the Docker daemon at http://docker.example.com. Is the docker daemon running?" is suspect.
on your server, if you run
groupsfor your user, do you seedocker? you can add the user withsudo usermod -aG docker <username>(think you have to log out and in again to effect changes).Or just running
docker psas your user on the server and see what you get back?Heyyy it works!
Thanks for guiding me through that @decentral1se, and for the assist on the server permissions side, @3wordchant.