Installation
Versions earlier than 3.5.14
If you haven't updated BlueMind to the latest published version, there may be a conflict between the packages installed because bm-cli will install its latest available version.
To avoid this, you can:
- either update your BlueMind installation beforehand (recommended solution)
or force the version number in the subscription before installing bm-cli in the same version as your BlueMind.
To do this, edit the file/etc/apt/sources.list.d/bm.list
and remplace "3.5" by the version number you want to use in the url:
#deb https://SUBSCRIPTION_USER:PASSWORD@pkg.bluemind.net/3.5/xenial/pkgs / deb https://SUBSCRIPTION_USER:PASSWORD@pkg.bluemind.net/3.5.12-4/xenial/pkgs
Note: we recommend that you copy the command line – as above – and comment the first version by adding # at the beginning of the line. This will make going back easier.
when you do this, the version for your entire BlueMind installation is frozen. Once the packages are installed, remember to change the version number back to the generic number so that you can update BlueMind in due course.
The bm-cli client is installed through a dedicated package on the server – available from BlueMind 3.5.10:
# aptitude install bm-cli
# yum install bm-cli
No restart is required, the commands are effective immediately.
Using the client
Commands
Commands are passed using a terminal straight onto the server, connected via ssh for instance.
For example, the following command can help you find out a user's address books:
root@mail:~# bm-cli contact list jdoe@bluemind.loc {"owner":"05E25C2C-3643-4ED2-997C-4A4F39933D18","uid":"book:Contacts_05E25C2C-3643-4ED2-997C-4A4F39933D18","name":"My contacts"} {"owner":"05E25C2C-3643-4ED2-997C-4A4F39933D18","uid":"book:CollectedContacts_05E25C2C-3643-4ED2-997C-4A4F39933D18","name":"Collected contacts"} {"owner":"05E25C2C-3643-4ED2-997C-4A4F39933D18","uid":"408C741B-3FDC-44B6-B1FD-19E79404BFCF","name":"Perso"}
Getting help
Commands are improved with every version of BlueMind. You may have more or fewer commands depending on the version you have installed.
Make sure you check the "bm-cli help" command to find out which commands are available.
E.g.:
# bm-cli help usage: bm-cli <command> [<args>] The most commonly used bm-cli commands are: calendar calendar task(s) contact contact task(s) help Display help information maintenance maintenance task(s) tick tick task(s) user user task(s) See 'bm-cli help <command>' for more information on a specific command.
This installation – version 3.5.11 – includes calendar, contacts and user commands which did not exist in earlier versions.
You can get help on a command, sub-command, how to use it and its options using "help" at any time.
E.g. "help maintenance" shows the maintenance command and the actions it can perform:
# bm-cli help maintenance NAME bm-cli maintenance - maintenance task(s) SYNOPSIS bm-cli maintenance bm-cli maintenance consolidateIndex [--workers <workers>] bm-cli maintenance list [--workers <workers>] bm-cli maintenance repair [--dry] [--workers <workers>] COMMANDS With no arguments, List directory entries list List directory entries ...
For more details about a sub-command, type it to get help, e.g. about index consolidation:
# bm-cli help maintenance consolidateIndex NAME bm-cli maintenance consolidateIndex - Consolidate a mailbox index SYNOPSIS bm-cli maintenance consolidateIndex [--workers <workers>] [--] <target> OPTIONS --workers <workers> run with X workers ...
Practical examples
Administration and Maintenance
Performing a domain-wide check&repair
The following command is used to perform a "check and repair" on all domain users using 4 threads:
bm-cli maintenance repair domain.net --numworkers 4
Changing the admin0 password
For multiple reasons – technical or practical, e.g. in case of loss -- you may need to change the admin0 user's password without logging into BlueMind.
The following command allows you to do this without knowing the old password:
bm-cli user update admin0@global.virt --password "NewPassword"
Updating Tick configuration
When the Bm-Tick monitoring tool is installed, you can use it to perform administration tasks. E.g. you can roll out the configuration on all domain servers again using the following command:
# bm-cli tick reconfigure
--dry
is added to test the command: the operation is merely simulated
# bm-cli tick reconfigure --dry
Operations on users
Deleting archived (suspended) domain users
version info
The "bm-cli user"
command will be available from BlueMind 3.5.11.
Commands can be coupled to perform several operations at once.
E.g. the command below is used to look for the email addresses of suspended users:
bm-cli user get domain.net --archived --display "email"
You can then couple this command with a "delete" command to remove all the users it returns:
bm-cli user get local.lan --display "email" | jq -r '.[].email' > /tmp/archived.txt while read account; do bm-cli user delete --dry $account ;done < /tmp/archived.txt
Operations on calendars
Sharing all user calendars with one user
It may be useful for one user to have access privileges on all user calendars without being given an administrator role (e.g. a secretary might be able to view/create events for all other employees). To avoid having to go through each user's page to enable sharing, this can be done in command line.
This cannot be done with a single command, but you can create a loop which picks up all domain users and enables sharing for each of them:
bm-cli users get domain.net > /tmp/allUser.domain.net while read account; do bm-cli calendar share $account « default » toto@domain.net r;done < /tmp/allUser.domain.net
Operations on contacts
The procedure below can be used to clean a user's collected address book and transfer their contacts to their personal address book (and testing the import process beforehand):
root@mail:~# bm-cli contact list jdoe@bluemind.loc {"owner":"05E25C2C-3643-4ED2-997C-4A4F39933D18","uid":"book:Contacts_05E25C2C-3643-4ED2-997C-4A4F39933D18","name":"My contacts"} {"owner":"05E25C2C-3643-4ED2-997C-4A4F39933D18","uid":"book:CollectedContacts_05E25C2C-3643-4ED2-997C-4A4F39933D18","name":"Collected contacts"} {"owner":"05E25C2C-3643-4ED2-997C-4A4F39933D18","uid":"408C741B-3FDC-44B6-B1FD-19E79404BFCF","name":"Perso"} root@mail:~# bm-cli contact deduplicate jdoe@bluemind.loc --addressbook-uid book:CollectedContacts_05E25C2C-3643-4ED2-997C-4A4F39933D18 2 were removed out of 35 root@mail:~# bm-cli contact export jdoe@bluemind.loc --vcf-file-path /tmp/jdoe-collected.vcf --addressbook-uid book:CollectedContacts_05E25C2C-3643-4ED2-997C-4A4F39933D18 addressbook book:CollectedContacts_05E25C2C-3643-4ED2-997C-4A4F39933D18 of jdoe@bluemind.loc was exported root@mail:~# bm-cli contact import jdoe@bluemind.loc --vcf-file-path /tmp/jdoe-collected.vcf --addressbook-uid 408C741B-3FDC-44B6-B1FD-19E79404BFCF --dry DRY : AddressBook 408C741B-3FDC-44B6-B1FD-19E79404BFCF of jdoe@bluemind.loc was imported root@mail:~# bm-cli contact import jdoe@bluemind.loc --vcf-file-path /tmp/jdoe-collected.vcf --addressbook-uid 408C741B-3FDC-44B6-B1FD-19E79404BFCF AddressBook 408C741B-3FDC-44B6-B1FD-19E79404BFCF of jdoe@bluemind.loc was imported root@mail:~# bm-cli contact reset jdoe@bluemind.loc --addressbook-uid book:CollectedContacts_05E25C2C-3643-4ED2-997C-4A4F39933D18 Addressbook book:CollectedContacts_05E25C2C-3643-4ED2-997C-4A4F39933D18 of jdoe@bluemind.loc was reset
Maintenance
The bm-cli tool is used to perform maintenance operations on users, e.g.:
bm-cli maintenance repair user@domain.net #repairs the user @domain.net bm-cli maintenance repair domain.net --numworkers 4 #repairs all domain users using 4 threads bm-cli maintenance consolidateIndex user@domain.net #consolidates the index for the user user@domain.net bm-cli maintenance consolidateIndex domain.net --from 0 --size 100 #processes the first 100 users returned bm-cli maintenance consolidateIndex domain.net --from 101 --size 50 #processes the next 50 users bm-cli maintenance consolidateIndex domain.net --match '[a-c].*' #processes the entities that begin with a, b or c
Installation and upgrade
The subscription includes automatic BlueMind updates, as well as the related additional bm-cli client operations.
These operations are sensitive and risky. Related commands should therefore be used by advanced administrators only.
To access these commands, you need to install the CLI plugin:
apt install bm-plugin-cli-setup
Commands
The additional "setup
" command is then available:
bm-cli help setup #for help on available arguments and how to use them bm-cli setup install --external-url bluemind.domain.net --domain domain.net --sw-pass Passw0rd bm-cli setup install --external-url bluemind.domain.net --domain domain.net --sw-pass Passw0rd --set-contact admin@domain.net --reinstall bm-cli setup upgrade #starts the post-installation update procedure instead unrolling the browser-based url https://<domain.net>/setup
--external-url
: BlueMind's external url--domain
--set-contact
: sets the default email address for subscription expiry notifications--sw-pass
: sets the admin password for the setupwizard
Update procedure
To update the installation in command line using the bm-cli tool, the procedure is the same as for a standard update procedure:
- Preparing for the update:
Note: this command is available from version 3.5.14
The "bm-cli setup" command is used to set the version you want to update.type the following command to update to the latest available version:
bm-cli setup version latest
to update to a specific version, pass the version number as a parameter:
bm-cli setup version 3.5.14-2
Note: using a major version number (e.g. "3.5" or "4") will have the same result as the "latest" option: the latest minor available version will be installed
to freeze a version and prevent updates to above versions:
bm-cli setup version current
Update the packages:
If you want to minimize service downtime, you can pass the update command with the "download-only" option, which enables you to download all the packages ahead of the update.
This does not interrupt or slow down services, which means it can be done at any time of day or night.
You can then run the "upgrade" command at a more convenient time and therefore reduce service downtime.
Debian/Ubuntu Redhat/CentOS## Operations that can be carried out in production aptitude update aptitude --download-only upgrade ## Operation that puts the service in maintenance mode aptitude upgrade
## Operations that can be carried out in production yum makecache yum --downloadonly upgrade ## Operation that puts the service in maintenance mode yum upgrade
Launch the update procedure:
bm-cli setup upgrade