· 6 years ago · Aug 09, 2019, 02:50 AM
1rabot@WAWA-DB-2:~/test$ bucardo
2Usage:
3 bucardo [<options>] <command> [<action>] [<command-options>] [<command-params>]
4
5Commands:
6 Run "bucardo help <command>" for additional details
7
8 "install"
9 Installs the Bucardo configuration database.
10
11 "upgrade"
12 Upgrades the Bucardo configuration database to the latest schema.
13
14 "start [<start options>] [<reason>]"
15 Starts Bucardo.
16
17 "stop [<reason>]"
18 Stops Bucardo.
19
20 "restart [<start options>] [<reason>]"
21 Stops and starts Bucardo.
22
23 "list <type> [<regex>]"
24 Lists objects managed by Bucardo.
25
26 "add <type> <name> <parameters>"
27 Adds a new object.
28
29 "update <type> <name> <parameters>"
30 Updates an object.
31
32 "remove <type> <name> [<name>...]"
33 Removes one or more objects.
34
35 "kick <syncname> [<sync options>] [<syncname>...] [<timeout>]"
36 Kicks off one or more syncs.
37
38 "reload config"
39 Sends a message to all CTL and KID processes asking them to reload
40 the Bucardo configuration.
41
42 "reopen"
43 Sends a message to all Bucardo processes asking them to reopen any
44 log files they may have open. Call this after you have rotated the
45 log file(s).
46
47 "show all|<setting> [<setting>...]"
48 Shows the current Bucardo settings.
49
50 "<set <setting=value" [<setting=value>...] >>
51 Sets one or more configuration setting..
52
53 "ping [<timeout>]"
54 Sends a ping notice to the MCP process to see if it will respond.
55
56 "status [<status options>] <syncname> [<syncname>...]"
57 Shows the brief status of syncs in a tabular format.
58
59 "activate <syncname> [<syncname>...] [<timeout>]"
60 Activates one or more named syncs.
61
62 "deactivate <syncname> [<syncname>...] [<timeout>]"
63 Deactivates one or more named syncs.
64
65 "message <body>"
66 Sends a message to the running Bucardo logs.
67
68 "reload [<syncname> [<syncname>...]]"
69 Sends a message to one or more sync processes, instructing them to
70 reload.
71
72 "inspect <type> <name> [<name>...]"
73 Inspects one or more objects of a particular type.
74
75 "validate all|<syncname> [<syncname>...]"
76 Validates one or more syncs.
77
78 "purge all|<table> [<table>...]"
79 Purges the delta and track tables for one or more tables, for one or
80 more databases.
81
82 "delta [<database(s)>]"
83 Show the delta counts for each source target.
84
85 "help [<command> [<action>]]"
86 Shows help.
87
88Options:
89 -d --db-name NAME Database name.
90 -U --db-user USER Database user name.
91 -P --db-pass PASS Database password.
92 -h --db-host HOST Database server host name.
93 -p --db-port PORT Database server port number.
94 --bucardorc FILE Use specified .bucardorc file.
95 --no-bucardorc Do not use .bucardorc file.
96 --quiet Incremental quiet.
97 --verbose Incremental verbose mode.
98 -? --help Output basic help and exit.
99 --version Print the version number and exit.
100 --dryrun Do not perform any actual actions.
101 --confirm Require direct confirmation before changes.
102
103rabot@WAWA-DB-2:~/test$ bucardo install
104Could not open "/etc/bucardorc": Permission denied
105rabot@WAWA-DB-2:~/test$ sudo bucardo install
106This will install the bucardo database into an existing Postgres cluster.
107Postgres must have been compiled with Perl support,
108and you must connect as a superuser
109
110Current connection settings:
1111. Host: localhost
1122. Port: 5432
1133. User: postgres
1144. Database: bucardo
1155. PID directory: /var/run/bucardo
116Enter a number to change it, P to proceed, or Q to quit: p
117
118-->Sorry, that is not a valid PID directory
119Current connection settings:
1201. Host: localhost
1212. Port: 5432
1223. User: postgres
1234. Database: bucardo
1245. PID directory: /var/run/bucardo
125Enter a number to change it, P to proceed, or Q to quit: q
126
127Goodbye!
128rabot@WAWA-DB-2:~/test$ sudo mkdir /var/run/bucardo
129rabot@WAWA-DB-2:~/test$ sudo bucardo install
130This will install the bucardo database into an existing Postgres cluster.
131Postgres must have been compiled with Perl support,
132and you must connect as a superuser
133
134Current connection settings:
1351. Host: localhost
1362. Port: 5432
1373. User: postgres
1384. Database: bucardo
1395. PID directory: /var/run/bucardo
140Enter a number to change it, P to proceed, or Q to quit: p
141
142Password for user postgres:
143-->Sorry, unable to connect to the database
144
145psql: FATAL: password authentication failed for user "postgres"
146FATAL: password authentication failed for user "postgres"
147Current connection settings:
1481. Host: localhost
1492. Port: 5432
1503. User: postgres
1514. Database: bucardo
1525. PID directory: /var/run/bucardo
153Enter a number to change it, P to proceed, or Q to quit: p
154
155Password for user postgres:
156-->Sorry, unable to connect to the database
157
158psql: fe_sendauth: no password supplied
159Current connection settings:
1601. Host: localhost
1612. Port: 5432
1623. User: postgres
1634. Database: bucardo
1645. PID directory: /var/run/bucardo
165Enter a number to change it, P to proceed, or Q to quit: p
166
167Password for user postgres:
168-->Sorry, unable to connect to the database
169
170psql: FATAL: password authentication failed for user "postgres"
171FATAL: password authentication failed for user "postgres"
172Current connection settings:
1731. Host: localhost
1742. Port: 5432
1753. User: postgres
1764. Database: bucardo
1775. PID directory: /var/run/bucardo
178Enter a number to change it, P to proceed, or Q to quit: q
179
180Goodbye!
181rabot@WAWA-DB-2:~/test$ db
182psql (10.9 (Ubuntu 10.9-0ubuntu0.18.04.1))
183Type "help" for help.
184
185trade=# \q
186rabot@WAWA-DB-2:~/test$ sudo -l postgres
187sudo: postgres: command not found
188rabot@WAWA-DB-2:~/test$ su -l postgres
189Password:
190su: Authentication failure
191rabot@WAWA-DB-2:~/test$ su -l postgres
192Password:
193su: Authentication failure
194rabot@WAWA-DB-2:~/test$ sudo -i -u postgres
195postgres@WAWA-DB-2:~$ pws
196
197Command 'pws' not found, did you mean:
198
199 command 'aws' from snap aws-cli (1.16.148)
200 command 'pcs' from deb pcs
201 command 'rpws' from deb ratpoison
202 command 'pvs' from deb lvm2
203 command 'psw' from deb wise
204 command 'pms' from deb pms
205 command 'pts' from deb openafs-client
206 command 'pwd' from deb coreutils
207 command 'aws' from deb awscli
208 command 'ps' from deb procps
209
210See 'snap info <snapname>' for additional versions.
211
212postgres@WAWA-DB-2:~$ pwd
213/var/lib/postgresql
214postgres@WAWA-DB-2:~$ passwd
215Changing password for postgres.
216(current) UNIX password:
217passwd: Authentication token manipulation error
218passwd: password unchanged
219postgres@WAWA-DB-2:~$ passwd
220Changing password for postgres.
221(current) UNIX password:
222passwd: Authentication token manipulation error
223passwd: password unchanged
224postgres@WAWA-DB-2:~$ sudo -u postgres psql postgres
225postgres is not in the sudoers file. This incident will be reported.
226postgres@WAWA-DB-2:~$ exity
227exity: command not found
228postgres@WAWA-DB-2:~$ exit
229logout
230rabot@WAWA-DB-2:~/test$ sudo -u postgres psql postgres
231psql (10.9 (Ubuntu 10.9-0ubuntu0.18.04.1))
232Type "help" for help.
233
234postgres=# \password
235Enter new password:
236Enter it again:
237postgres=# \q
238rabot@WAWA-DB-2:~/test$ sudo bucardo install
239This will install the bucardo database into an existing Postgres cluster.
240Postgres must have been compiled with Perl support,
241and you must connect as a superuser
242
243Current connection settings:
2441. Host: localhost
2452. Port: 5432
2463. User: postgres
2474. Database: bucardo
2485. PID directory: /var/run/bucardo
249Enter a number to change it, P to proceed, or Q to quit: p
250
251Password for user postgres:
252Failed to connect to database 'bucardo', will try 'postgres'
253Current connection settings:
2541. Host: localhost
2552. Port: 5432
2563. User: postgres
2574. Database: postgres
2585. PID directory: /var/run/bucardo
259Enter a number to change it, P to proceed, or Q to quit: q
260
261Goodbye!
262rabot@WAWA-DB-2:~/test$ sudo -i -u postgres
263postgres@WAWA-DB-2:~$ createdb bucardo
264postgres@WAWA-DB-2:~$ exit
265logout
266rabot@WAWA-DB-2:~/test$ sudo bucardo install
267This will install the bucardo database into an existing Postgres cluster.
268Postgres must have been compiled with Perl support,
269and you must connect as a superuser
270
271Current connection settings:
2721. Host: localhost
2732. Port: 5432
2743. User: postgres
2754. Database: bucardo
2765. PID directory: /var/run/bucardo
277Enter a number to change it, P to proceed, or Q to quit: p
278
279Password for user postgres:
280rabot@WAWA-DB-2:~/test$ sudo bucardo install
281This will install the bucardo database into an existing Postgres cluster.
282Postgres must have been compiled with Perl support,
283and you must connect as a superuser
284
285Current connection settings:
2861. Host: localhost
2872. Port: 5432
2883. User: postgres
2894. Database: bucardo
2905. PID directory: /var/run/bucardo
291Enter a number to change it, P to proceed, or Q to quit: p
292
293Password for user postgres:
294Postgres version is: 10.9
295Password for user postgres:
296Creating superuser 'bucardo'
297Password for user postgres:
298Attempting to create and populate the bucardo database and schema
299Password for user postgres:
300Database creation is complete
301
302DBI connect('dbname=bucardo;host=localhost;port=5432','bucardo',...) failed: fe_sendauth: no password supplied at /usr/bin/bucardo line 9079.
303rabot@WAWA-DB-2:~/test$ sudo bucardo install
304This will install the bucardo database into an existing Postgres cluster.
305Postgres must have been compiled with Perl support,
306and you must connect as a superuser
307
308Current connection settings:
3091. Host: localhost
3102. Port: 5432
3113. User: postgres
3124. Database: bucardo
3135. PID directory: /var/run/bucardo
314Enter a number to change it, P to proceed, or Q to quit: p
315
316Password for user postgres:
317Postgres version is: 10.9
318Password for user postgres:
319Attempting to create and populate the bucardo database and schema
320Password for user postgres:
321
322INSTALLATION FAILED! Looks like you already have Bucardo installed there.
323Try running 'bucardo upgrade' instead.
324If you are trying to completely reinstall Bucardo,
325drop the bucardo database, and the bucardo schema from all databases.
326
327rabot@WAWA-DB-2:~/test$ sudo -i -u postgres
328postgres@WAWA-DB-2:~$ exit
329logout
330rabot@WAWA-DB-2:~/test$ db
331psql (10.9 (Ubuntu 10.9-0ubuntu0.18.04.1))
332Type "help" for help.
333
334trade=# drop database bucardo;
335DROP DATABASE
336trade=# \q
337rabot@WAWA-DB-2:~/test$ sudo -i -u postgres
338postgres@WAWA-DB-2:~$ createdb bucardo
339postgres@WAWA-DB-2:~$ exit
340logout
341rabot@WAWA-DB-2:~/test$ sudo adduser bucardo
342adduser: The user `bucardo' already exists.
343rabot@WAWA-DB-2:~/test$ sudo deluser bucardo
344Removing user `bucardo' ...
345Warning: group `bucardo' has no more members.
346Done.
347rabot@WAWA-DB-2:~/test$ sudo rm -r /home/bucardo
348rm: cannot remove '/home/bucardo': No such file or directory
349rabot@WAWA-DB-2:~/test$ sudo adduser bucardo
350Adding user `bucardo' ...
351Adding new group `bucardo' (1002) ...
352Adding new user `bucardo' (1002) with group `bucardo' ...
353Creating home directory `/home/bucardo' ...
354Copying files from `/etc/skel' ...
355Enter new UNIX password:
356Retype new UNIX password:
357passwd: password updated successfully
358Changing the user information for bucardo
359Enter the new value, or press ENTER for the default
360 Full Name []:
361 Room Number []:
362 Work Phone []:
363 Home Phone []:
364 Other []:
365Is the information correct? [Y/n] y
366rabot@WAWA-DB-2:~/test$ sudo bucardo install
367This will install the bucardo database into an existing Postgres cluster.
368Postgres must have been compiled with Perl support,
369and you must connect as a superuser
370
371Current connection settings:
3721. Host: localhost
3732. Port: 5432
3743. User: postgres
3754. Database: bucardo
3765. PID directory: /var/run/bucardo
377Enter a number to change it, P to proceed, or Q to quit: p
378
379Password for user postgres:
380Postgres version is: 10.9
381Password for user postgres:
382Attempting to create and populate the bucardo database and schema
383Password for user postgres:
384Database creation is complete
385
386DBI connect('dbname=bucardo;host=localhost;port=5432','bucardo',...) failed: fe_sendauth: no password supplied at /usr/bin/bucardo line 9079.
387rabot@WAWA-DB-2:~/test$ sudo bucardo upgrade
388DBI connect('dbname=bucardo;host=localhost;port=5432','bucardo',...) failed: FATAL: password authentication failed for user "bucardo"
389FATAL: password authentication failed for user "bucardo" at /usr/bin/bucardo line 308.
390rabot@WAWA-DB-2:~/test$ sudo -i -u postgres
391postgres@WAWA-DB-2:~$ CREATE USER bucardo WITH LOGIN SUPERUSER ENCRYPTED PASSWORD 'password';
392CREATE: command not found
393postgres@WAWA-DB-2:~$ createuser --interactive
394Enter name of role to add: bucardo
395Shall the new role be a superuser? (y/n) y
396createuser: creation of new role failed: ERROR: role "bucardo" already exists
397postgres@WAWA-DB-2:~$ deleteuser bucardo
398deleteuser: command not found
399postgres@WAWA-DB-2:~$ psql
400psql (10.9 (Ubuntu 10.9-0ubuntu0.18.04.1))
401Type "help" for help.
402
403postgres=# drop user bucardo;
404ERROR: role "bucardo" cannot be dropped because some objects depend on it
405DETAIL: 46 objects in database bucardo
406postgres=# drop database bucardo;
407DROP DATABASE
408postgres=# drop user bucardo;
409DROP ROLE
410postgres=# \q
411postgres@WAWA-DB-2:~$ createuser --interactive
412Enter name of role to add: bucardo
413Shall the new role be a superuser? (y/n) y
414postgres@WAWA-DB-2:~$ sudo -u bucardo psql
415[sudo] password for postgres:
416Sorry, try again.
417[sudo] password for postgres:
418sudo: 1 incorrect password attempt
419postgres@WAWA-DB-2:~$ sudo -u bucardo psql
420[sudo] password for postgres:
421postgres@WAWA-DB-2:~$ exit
422logout
423rabot@WAWA-DB-2:~/test$ sudo -u bucardo psql
424psql: FATAL: database "bucardo" does not exist
425rabot@WAWA-DB-2:~/test$ createdb bucardo
426createdb: could not connect to database template1: FATAL: role "rabot" does not exist
427rabot@WAWA-DB-2:~/test$ sudo -l bucardo
428/usr/bin/bucardo
429rabot@WAWA-DB-2:~/test$ su -l bucardo
430Password:
431bucardo@WAWA-DB-2:~$ createdb bucardo
432bucardo@WAWA-DB-2:~$ psql
433psql (10.9 (Ubuntu 10.9-0ubuntu0.18.04.1))
434Type "help" for help.
435
436bucardo=# /password
437bucardo-# \password
438Enter new password:
439Enter it again:
440bucardo-# \q
441bucardo@WAWA-DB-2:~$ exit
442logout
443rabot@WAWA-DB-2:~/test$ sudo bucardo install
444This will install the bucardo database into an existing Postgres cluster.
445Postgres must have been compiled with Perl support,
446and you must connect as a superuser
447
448Current connection settings:
4491. Host: localhost
4502. Port: 5432
4513. User: postgres
4524. Database: bucardo
4535. PID directory: /var/run/bucardo
454Enter a number to change it, P to proceed, or Q to quit: p
455
456Password for user postgres:
457Postgres version is: 10.9
458Password for user postgres:
459Attempting to create and populate the bucardo database and schema
460Password for user postgres:
461Database creation is complete
462
463DBI connect('dbname=bucardo;host=localhost;port=5432','bucardo',...) failed: fe_sendauth: no password supplied at /usr/bin/bucardo line 9079.
464rabot@WAWA-DB-2:~/test$ find / -name 'pg_hba.conf'
465find: ‘/run/lxcfs’: Permission denied
466find: ‘/run/sudo’: Permission denied
467find: ‘/run/postgresql/10-main.pg_stat_tmp’: Permission denied
468find: ‘/run/cryptsetup’: Permission denied
469find: ‘/run/lvm’: Permission denied
470find: ‘/run/systemd/ask-password-block’: Permission denied
471find: ‘/run/systemd/unit-root’: Permission denied
472find: ‘/run/systemd/inaccessible’: Permission denied
473find: ‘/run/lock/lvm’: Permission denied
474^C
475rabot@WAWA-DB-2:~/test$ sudo find / -name 'pg_hba.conf'
476/etc/postgresql/10/main/pg_hba.conf
477rabot@WAWA-DB-2:~/test$ sudo nano /etc/postgresql/10/main/pg_hba.conf
478rabot@WAWA-DB-2:~/test$ sudo reboot
479Connection to 165.22.231.103 closed by remote host.
480Connection to 165.22.231.103 closed.
481kid@kidu:~$ w2
482Welcome to Ubuntu 18.04.2 LTS (GNU/Linux 4.15.0-52-generic x86_64)
483
484 * Documentation: https://help.ubuntu.com
485 * Management: https://landscape.canonical.com
486 * Support: https://ubuntu.com/advantage
487
488 System information as of Fri Aug 9 02:38:23 UTC 2019
489
490 System load: 0.68 Processes: 86
491 Usage of /: 6.2% of 24.06GB Users logged in: 0
492 Memory usage: 11% IP address for eth0: 165.22.231.103
493 Swap usage: 0%
494
49564 packages can be updated.
49633 updates are security updates.
497
498
499Last login: Thu Aug 8 23:42:18 2019 from 71.232.65.53
500rabot@WAWA-DB-2:~$ cd test
501rabot@WAWA-DB-2:~/test$ sudo bucardo install
502[sudo] password for rabot:
503This will install the bucardo database into an existing Postgres cluster.
504Postgres must have been compiled with Perl support,
505and you must connect as a superuser
506
507Current connection settings:
5081. Host: localhost
5092. Port: 5432
5103. User: postgres
5114. Database: bucardo
5125. PID directory: /var/run/bucardo
513Enter a number to change it, P to proceed, or Q to quit: p
514
515-->Sorry, that is not a valid PID directory
516Current connection settings:
5171. Host: localhost
5182. Port: 5432
5193. User: postgres
5204. Database: bucardo
5215. PID directory: /var/run/bucardo
522Enter a number to change it, P to proceed, or Q to quit: q
523
524Goodbye!
525rabot@WAWA-DB-2:~/test$ cd /var/run/bucardo
526-bash: cd: /var/run/bucardo: No such file or directory
527rabot@WAWA-DB-2:~/test$ mkdir /var/run/bucardo
528mkdir: cannot create directory ‘/var/run/bucardo’: Permission denied
529rabot@WAWA-DB-2:~/test$ sudo mkdir /var/run/bucardo
530rabot@WAWA-DB-2:~/test$ sudo bucardo install
531This will install the bucardo database into an existing Postgres cluster.
532Postgres must have been compiled with Perl support,
533and you must connect as a superuser
534
535Current connection settings:
5361. Host: localhost
5372. Port: 5432
5383. User: postgres
5394. Database: bucardo
5405. PID directory: /var/run/bucardo
541Enter a number to change it, P to proceed, or Q to quit: p
542
543Postgres version is: 127.0
544Attempting to create and populate the bucardo database and schema
545
546INSTALLATION FAILED! (psql: could not connect to server: Connection refused
547 Is the server running on host "localhost" (127.0.0.1) and accepting
548 TCP/IP connections on port 5432?)
549
550rabot@WAWA-DB-2:~/test$ db
551psql: could not connect to server: No such file or directory
552 Is the server running locally and accepting
553 connections on Unix domain socket "/var/run/postgresql/.s.PGSQL.5432"?
554rabot@WAWA-DB-2:~/test$ sudo systemctl status postgresql
555● postgresql.service - PostgreSQL RDBMS
556 Loaded: loaded (/lib/systemd/system/postgresql.service; enabled; vendor preset: enabled)
557 Active: active (exited) since Fri 2019-08-09 02:37:59 UTC; 2min 31s ago
558 Process: 895 ExecStart=/bin/true (code=exited, status=0/SUCCESS)
559 Main PID: 895 (code=exited, status=0/SUCCESS)
560
561Aug 09 02:37:59 WAWA-DB-2 systemd[1]: Starting PostgreSQL RDBMS...
562Aug 09 02:37:59 WAWA-DB-2 systemd[1]: Started PostgreSQL RDBMS.
563rabot@WAWA-DB-2:~/test$ sudo nano /etc/postgresql/10/main/pg_hba.conf
564rabot@WAWA-DB-2:~/test$ sudo systemctl restart postgresql
565rabot@WAWA-DB-2:~/test$ db
566psql (10.9 (Ubuntu 10.9-0ubuntu0.18.04.1))
567Type "help" for help.
568
569trade=# \q
570rabot@WAWA-DB-2:~/test$ sudo nano /etc/postgresql/10/main/pg_hba.conf
571rabot@WAWA-DB-2:~/test$ sudo systemctl restart postgresql
572rabot@WAWA-DB-2:~/test$ db
573psql (10.9 (Ubuntu 10.9-0ubuntu0.18.04.1))
574Type "help" for help.
575
576trade=# \q
577rabot@WAWA-DB-2:~/test$ sudo bucardo install
578This will install the bucardo database into an existing Postgres cluster.
579Postgres must have been compiled with Perl support,
580and you must connect as a superuser
581
582Current connection settings:
5831. Host: localhost
5842. Port: 5432
5853. User: postgres
5864. Database: bucardo
5875. PID directory: /var/run/bucardo
588Enter a number to change it, P to proceed, or Q to quit: p
589
590Password for user postgres:
591Postgres version is: 10.9
592Password for user postgres:
593Attempting to create and populate the bucardo database and schema
594Password for user postgres:
595
596INSTALLATION FAILED! Looks like you already have Bucardo installed there.
597Try running 'bucardo upgrade' instead.
598If you are trying to completely reinstall Bucardo,
599drop the bucardo database, and the bucardo schema from all databases.
600
601rabot@WAWA-DB-2:~/test$ sudo su -l bucardo
602bucardo@WAWA-DB-2:~$ psgl
603
604Command 'psgl' not found, did you mean:
605
606 command 'psql' from deb postgresql-client-common
607 command 'psl' from deb psl
608 command 'psbl' from deb impose+
609
610Try: apt install <deb name>
611
612bucardo@WAWA-DB-2:~$ psql
613psql (10.9 (Ubuntu 10.9-0ubuntu0.18.04.1))
614Type "help" for help.
615
616bucardo=# drop database bucardo
617bucardo-# drop database bucardo;
618ERROR: syntax error at or near "drop"
619LINE 2: drop database bucardo;
620 ^
621bucardo=# drop database bucardo
622drop database bucardo;
623ERROR: syntax error at or near "drop"
624LINE 2: drop database bucardo;
625 ^
626bucardo=#
627bucardo=# drop database bucardo;
628ERROR: cannot drop the currently open database
629bucardo=# \q
630bucardo@WAWA-DB-2:~$ exit
631logout
632rabot@WAWA-DB-2:~/test$ db
633psql (10.9 (Ubuntu 10.9-0ubuntu0.18.04.1))
634Type "help" for help.
635
636trade=# drop database bucardo;
637DROP DATABASE
638trade=# \q
639rabot@WAWA-DB-2:~/test$ sudo su -l bucardo
640bucardo@WAWA-DB-2:~$ createdb bucardo
641bucardo@WAWA-DB-2:~$ exit
642logout
643rabot@WAWA-DB-2:~/test$ sudo bucardo install
644This will install the bucardo database into an existing Postgres cluster.
645Postgres must have been compiled with Perl support,
646and you must connect as a superuser
647
648Current connection settings:
6491. Host: localhost
6502. Port: 5432
6513. User: postgres
6524. Database: bucardo
6535. PID directory: /var/run/bucardo
654Enter a number to change it, P to proceed, or Q to quit: [
655
656-->Please enter Q to quit, P to proceed, or enter a number to change a setting
657Current connection settings:
6581. Host: localhost
6592. Port: 5432
6603. User: postgres
6614. Database: bucardo
6625. PID directory: /var/run/bucardo
663Enter a number to change it, P to proceed, or Q to quit: p
664
665Password for user postgres:
666Postgres version is: 10.9
667Password for user postgres:
668Attempting to create and populate the bucardo database and schema
669Password for user postgres:
670Database creation is complete
671
672Updated configuration setting "piddir"
673Installation is now complete.
674If you see errors or need help, please email bucardo-general@bucardo.org
675
676You may want to check over the configuration variables next, by running:
677bucardo show all
678Change any setting by using: bucardo set foo=bar