标签:
否则,服务安装后无法启动
?
在CMD下找到nexus.bat,执行nexus.bat start即可。
Http://localhost:8081/nexus,若能打开,说明服务安装成功
如果要更改端口号,可以conf/nexus.properties中更改
?
?
?
<profiles>
????<profile>
????????<!-- 本地开发环境 -->
????????<id>development</id>
????????<properties>
????????????<profiles.active>development</profiles.active>
????????????<deploy.url>http://host:port/manager/text</deploy.url>
????????</properties>
????????<activation>
????????????<activeByDefault>true</activeByDefault>
????????</activation>
????</profile>
????<profile>
????????<!-- 测试环境 -->
????????<id>test</id>
????????<properties>
????????????<profiles.active>test</profiles.active>
????????????<deploy.url>http://host:port/manager/text</deploy.url>
????????</properties>
????</profile>
????<profile>
????????<!-- 生产环境 -->
????????<id>production</id>
????????<properties>
????????????<profiles.active>production</profiles.active>
????????????<deploy.url>http://host:port/manager/text</deploy.url>
????????</properties>
????</profile>
</profiles>
?
这里定义了三个环境,分别是development(开发环境)、test(测试环境)、production(生产环境),其中开发环境是默认激活的(activeByDefault为true),这样如果在不指定profile时默认是开发环境。
?
可以在settings.xml中使用activeProfiles指定处于激活状态的profile
?
?
标签:
原文地址:http://www.cnblogs.com/xiaozhi123/p/4683957.html