每次使用Bower Tool我都会以json格式输出.
例如:
**凉亭帮助**
cosole输出:
{
"usage": [
"<command> [<args>] [<options>]"
],
"commands": {
"cache": "Manage bower cache",
"help": "Display help information about Bower",
"home": "Opens a package homepage into your favorite browser",
"info": "Info of a particular package",
"init": "Interactively create a bower.json file",
"install": "Install a package locally",
"link": "Symlink a package folder",
"list": "List local packages - and possible updates",
"login": "Authenticate with GitHub and store credentials",
"lookup": "Look up a package URL by name",
"prune": "Removes …Run Code Online (Sandbox Code Playgroud) 我遇到了误会的情况.
我尝试在Ubuntu 16.04上设置Wildfly 10.1.0以在域模式下工作.为了测试我有额外的虚拟机.
基本系统:域控制器
虚拟机:主机控制器
一般来说,配置我正在使用wildfly文档,但它不能正常工作.
没有身份验证主机服务器可以连接到域控制器,但是当我想要使用身份验证时会出现问题 - 有一些我不理解的奇怪行为.
在域控制器上:
用户:测试
密码:测试
此新用户是否将用于一个AS进程以连接到另一个AS进程?例如,对于连接到主服务器的从属主机控制器或用于服务器到服务器EJB调用的远程连接.是/否?是表示用户将以下内容添加到server-identityities定义secret value ="dGVzdA =="
3.server启动没有问题使用 domain.sh --host-config=host-master.xml
在主机控制器上:
使用机密值设置host-slave.xml中的所有内容:
<security-realm name="ManagementRealm">
<server-identities>
<secret value="dGVzdA==" />
</server-identities>
<authentication>
<local default-user="$local" skip-group-loading="true"/>
<properties path="mgmt-users.properties" relative-to="jboss.domain.config.dir"/>
</authentication>
<authorization map-groups-to-roles="false">
<properties path="mgmt-groups.properties" relative-to="jboss.domain.config.dir"/>
</authorization>
</security-realm>
Run Code Online (Sandbox Code Playgroud)
当我启动服务器时获取以下错误:
*[主机控制器] 22:23:03,553 WARN [org.jboss.as.host.controller]**(控制器启动线程)WFLYHC0001:无法连接到远程域控制器远程://192.168.56.1:9999 - java .lang.IllegalStateException:WFLYHC0043:由于身份验证失败而无法连接.*
./domain.sh --host-config=host-slave.xml
=========================================================================
JBoss Bootstrap Environment
JBOSS_HOME: /home/test1/Warsztat/wildfly
JAVA: java
JAVA_OPTS: -server -Xms64m -Xmx512m -XX:MaxMetaspaceSize=256m -Djava.net.preferIPv4Stack=true …Run Code Online (Sandbox Code Playgroud)