psql
command-line tool.postgres
user:psql
command-line client or with pgAdmin GUI application. For psql
, use following command:postgres=#
prompt waiting for your input, your installation is fine. You can quit psql
typing \q
followed by Enter.postgres
process using your operating system's Process Viewer (or Task Manager). If postgres
process is running, please consider updating pg_hba.conf
file as described in this wiki article.fhirbase-os-arch
to just fhirbase
and put in some directory listed in you $PATH
environment variable. To check that it was properly installed, type following command:cd C:\Path\To\Fhirbase\Exe
and press Enter (use real path instead of example one)fhirbase
and press Enter (make sure you've renamed downloaded exe file to just fhirbase
)$PATH
variable is, it's ok, you can skip this step. But you'll have to type full path to the fhirbase
executable every time you'll invoke Fhirbase command. So instead of typingfhirbase
command, most likely fhirbase
binary wasn't correctly placed inside $PATH
.psql
command-line client or some GUI client like pgAdmin. Connect to Postgres as you previously did:CREATE DATABASE
statement:CREATE DATABASE
text as a response to your command, your database was succesfully created. Type \q
to quit psql
.fhirbase init
command:--host localhost
specifies host where Postgres is running-p 5432
specifies Postgres port-d fhirbase
specifies name of the database to connect to (don't forget to change it if you named database differently)-U postgres
name of Postgres user, "postgres" is fine for most cases-W postgres
user's password--fhir=3.3.0
FHIR version you're going to usefhirbase load
command: