Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install Nexus 3 on Windows?

Tags:

nexus

I downloaded an unpacked Sonatype Nexus OSS. But have no clue how to install it. There is a readme file. All tutorials get outdated.

nexus.exe just immediately finishes without a message. No logs appears. The same with nexus.exe install and nexus.exe start - URL http://localhost:8081/ stays unavailable. There is no jsw directory anymore also.

My directory structure:

  • D:\java\nexus\nexus-3.1.0-04
  • D:\java\nexus\sonatype-work

Java:

>java -version
java version "1.8.0_77"
Java(TM) SE Runtime Environment (build 1.8.0_77-b03)
Java HotSpot(TM) 64-Bit Server VM (build 25.77-b03, mixed mode)

Windows 7 x64

like image 837
Pavel Vlasov Avatar asked Nov 11 '16 10:11

Pavel Vlasov


People also ask

How do I run nexus sonatype?

To use the user interface, fire up a web browser and type in the URL http://localhost:8081/nexus . You should see the user interface as displayed in Figure 3.5, “Application Window”. While we use localhost throughout this book, you may need to use the IP Loopback Address of 127.0.


2 Answers

From starting version 3.x.x-xx, navigate to bin directory ,run nexus.exe /run and wait until you see the log message

 Started Nexus Repository Manager 3.x.x-xx

And then open the url localhost:8081. You will see the home-screen. To sign-in for full access, use the creditions admin/admin123. Further reading Installing and Running with the Distribution Archive and Accessing the User Interface.

like image 106
Cataclysm Avatar answered Oct 05 '22 14:10

Cataclysm


nexus /install

This will install nexus as a service. You can then open the user interface localhost:8081.

Default creds aare admin/admin123

like image 29
Naresh Sharma Avatar answered Oct 05 '22 13:10

Naresh Sharma