-
Notifications
You must be signed in to change notification settings - Fork 282
How to add a notification
Cesar Celis Hernandez edited this page Feb 26, 2022
·
18 revisions
- Start MinIO Server
minio server /Volumes/data{1...4} --address localhost:9000 --console-address localhost:9001
As a result you should see this:
Automatically configured API requests per node based on available memory on the system: 263
Status: 4 Online, 0 Offline.
API: http://192.168.0.21:9000 http://127.0.0.1:9000
RootUser: minioadmin
RootPass: minioadmin
Console: http://localhost:6001
RootUser: minioadmin
RootPass: minioadmin
Command-line: https://docs.min.io/docs/minio-client-quickstart-guide
$ mc alias set myminio http://192.168.0.21:9000 minioadmin minioadmin
Documentation: https://docs.min.io
- Then launch docker container to have PostgreSQL, make sure your
docker daemon
is running:
docker run --name pgsqlcontainer -p 5432:5432 -e POSTGRES_PASSWORD=password -d postgres
- Then connect to the Data Base and create this table below:
psql --host localhost --port 5432 --user postgres
The password is: password
as set above in docker command: POSTGRES_PASSWORD=password
CREATE TABLE events (
key serial PRIMARY KEY,
value varchar(30),
event_time timestamp DEFAULT now(),
event_data text
);