How to check the Nexus Repository Manager version from Linux command line?

Hi Pete,
Currently the easiest way to get the version of Nexus 3 from the command line is to use curl and parse the ‘Server’ response header.

$ curl --include --silent http://localhost:8081/ | grep Server

Server : Nexus/3.12.0-01 (PRO)
3 Likes