We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Would it be possible to add a note to the my_launchpad.yaml section of setup docs notifying users of MongoDB Atlas that passing the connection test
my_launchpad.yaml
lpad -l config/my_launchpad.yaml reset
requires adding ssl: true and authsource: admin to my_launchpad.yaml
ssl: true
authsource: admin
host: mongodb+srv://atomate-cluster.<DB_ID>.mongodb.net port: 27017 name: atomate-cluster username: janosh password: foobar ssl_ca_file: null logdir: null strm_lvl: INFO user_indices: [] wf_user_indices: [] # new ssl: true # required authsource: admin # required
Without ssl: true, I'm getting
pymongo.errors.ServerSelectionTimeoutError: connection closed,connection closed,connection closed, Timeout: 30s, Topology Description: <TopologyDescription id: 607731cd0963ed07169e2ed6, topology_type: ReplicaSetNoPrimary, servers: [<ServerDescription ('atomate-cluster-shard-00-00.q8s9p.mongodb.net', 27017)
and without authsource: admin, the error is
pymongo.errors.OperationFailure: Authentication failed., full error: {'ok': 0, 'errmsg': 'Authentication failed.', 'code': 8000, 'codeName': 'AtlasError'}
Alternatively, perhaps worth considering changing the default ssl to True.
ssl
True
The text was updated successfully, but these errors were encountered:
Another small correction for the Pseudopotentials section of the setup docs:
Based on
pseudopotentials ├── POT_GGA_PAW_PBE │ ├── POTCAR.Ac.gz │ ├── POTCAR.Ac_s.gz │ ├── POTCAR.Ag.gz │ └── ... ├── POT_GGA_PAW_PW91 │ ├── POTCAR.Ac.gz │ ├── POTCAR.Ac_s.gz │ ├── POTCAR.Ag.gz │ └── ... └── POT_LDA_PAW ├── POTCAR.Ac.gz ├── POTCAR.Ac_s.gz ├── POTCAR.Ag.gz └── ...
this line in ~/.pgmrc.yml should be
~/.pgmrc.yml
- PMG_VASP_PSP_DIR: <<INSTALL_DIR>>/pps + PMG_VASP_PSP_DIR: <<INSTALL_DIR>>/pseudopotentials
Sorry, something went wrong.
No branches or pull requests
Would it be possible to add a note to the
my_launchpad.yaml
section of setup docs notifying users of MongoDB Atlas that passing the connection testrequires adding
ssl: true
andauthsource: admin
tomy_launchpad.yaml
Without
ssl: true
, I'm gettingand without
authsource: admin
, the error isAlternatively, perhaps worth considering changing the default
ssl
toTrue
.The text was updated successfully, but these errors were encountered: