Page 1 of 1
SFTP problems
Posted: 24 April 2024, 21:07
by OlafTheUnready
I am trying to follow the reversi tutorial.
Looking at this page:
https://github.com/NevinAF/bga-ts-templ ... s/index.md
This bit:
"Run the SFTP: Sync Remote -> Local command. This will download all initial files from the BGA server to your local folder."
Does not work: I get "All configured authentication methods failed"
Re: SFTP problems
Posted: 24 April 2024, 21:20
by OlafTheUnready
Resolved.
The model for accounts on BGA is quite confusing, perhaps it should be better documented somwhere.
1. There's my main account to play games, I can get in there by signing in with Google. Username OlafTheUnready.
2. Then there's my "develop with this account" account, I can get in there by signing in with DougBanks0 and custom password.
3. Then there's OTHER username/passwd pairs for certain services like SFTP and database.
I was using 2 and I should have been using 3.
Re: SFTP problems
Posted: 27 April 2024, 00:47
by Victoria_La
This is what documented now on
https://en.doc.boardgamearena.com/How_t ... er_team%3F
Is this not clear? We can adjust wiki in this case
---
Once registered, you will get this by email:
* one login / password to access files through SFTP
* one login / password to access the database (for your games in progress)
* ten logins with numeric suffixes from 0 to 9 and a common simple password to test games on the studio website while developing.
Re: SFTP problems
Posted: 02 September 2024, 14:26
by Harry_Tuttle
I have the same issue, while starting with the reversi tutorial. But I do use the correct user/password pair. I get the same error.
I have set everything up like in the documentation:
Code: Select all
{
"name": "BGA",
"host": "1.studio.boardgamearena.com",
"protocol": "sftp",
"port": 22,
"username": "macbas",
"password": "************my-sftp-password***************",
"remotePath": "/ReversiTutorial/",
"ignore": [
".vscode",
".git",
".idea",
".gitignore",
".DS_Store",
"node_modules",
"package-lock.json",
"yarn.lock",
"nmp-debug.log",
"yarn-error.log",
"source/client/build"
]
}
Not sure what the problem is.
Re: SFTP problems
Posted: 02 September 2024, 15:02
by thoun
The port is now 2022, you still have 22 written.
Re: SFTP problems
Posted: 02 September 2024, 15:38
by Harry_Tuttle
Ah, now it works. Also needed to update the path correctl. But the port shoul maybe updated in the documentation. There it is still 22. Thanks a lot!
Re: SFTP problems
Posted: 02 September 2024, 21:46
by Wumixh
Hi,
I'm having the same error.
I've try also with WinSCP and i've got access denied with my account. My SFTP user is Wumixh.
Re: SFTP problems
Posted: 15 April 2025, 21:27
by Waterraft
hi all,
just to cap this thread off with a working template for anyone who finds this later and is still a bit confused on how to set up the SFTP on VScode
Code: Select all
{
"name": "BGA",
"host": "1.studio.boardgamearena.com",
"protocol": "sftp",
"port": 2022,
"username": " username check email ",
"password": " password check email ",
"remotePath": " name of project /",
"ignore": [
".vscode",
".git",
".idea",
".gitignore",
".DS_Store",
"node_modules",
"package-lock.json",
"yarn.lock",
"nmp-debug.log",
"yarn-error.log",
"source/client/build"
]
}
Re: SFTP problems
Posted: 15 April 2025, 22:06
by thoun