Just tried the latest upstream. Upon accessing localhost:9990/console in
standalone mode, I'm directly shown the Connector -> Datasources page.
But other than that page I can't access anything else on the console.
Each click on the sidebar links results in this issue
https://issues.jboss.org/browse/JBAS-9205 (which I have been
encountering even in previous versions too). Is it just my setup which
runs into this issue. Currently I'm on Ubuntu OS, Firefox 4.0.1 (it used
to happen on Firefox 3.x too) and the server is booted with:
jpai@jpai-laptop:jboss$ java -version
java version "1.6.0_21"
Java(TM) SE Runtime Environment (build 1.6.0_21-b06)
Java HotSpot(TM) Server VM (build 17.0-b16, mixed mode)
-Jaikiran
On Thursday 26 May 2011 05:18 PM, Heiko Braun wrote:
A few things to know:
How do I access the console?
========================
http://localhost:9990/console
How do I enable authentication?
=========================
Simply create a security realm configuration.
This needs to be done in "domain/configuration/host.xml" for domain mode:
<management>
<security-realms>
<security-realm name="ManagementRealm">
<authentication>
<users>
<user username="admin">
<password>
password
</password>
</user>
</users>
</authentication>
</security-realm>
</security-realms>
</management>
<management-interfaces>
<native-interface interface="public" port="9999"/>
<http-interface interface="public" port="9990"
security-realm="ManagementRealm"/>
</management-interfaces>
Or "standalone/configuration/standalone.xml":
<management>
<security-realms>
<security-realm name="ManagementRealm">
<authentication>
<users>
<user username="admin">
<password>password</password>
</user>
</users>
</authentication>
</security-realm>
</security-realms>
</management>
<management-interfaces>
<native-interface interface="default" port="9999"/>
<http-interface interface="default" port="9990"
security-realm="ManagementRealm"/>
</management-interfaces>
How do I switch between standalone and domain administration?
==================================================
Just boot AS7 in either one of these modes and reload the console web application.
On May 26, 2011, at 1:41 PM, Dimitris Andreadis wrote:
> Muchas Gracias!!!
>
> On 26/05/2011 14:33, Heiko Braun wrote:
>>
>>
>> We just updated to 1.0.0.Beta9:
>>
>> - suport for standalone
>> - i18n
>> - deployments
>> - authentication
>>
>> - datasources
>> - jms configurations
>> - messaging
>> - web subsystem
>>
>> - server groups
>> - server configurations
>>
>> - system properties
>> - jvm options
>> - socket bindings
>>
>>
>> The given functionality has small glitches here and there but most of it has been
reported
>> and is being worked on. In terms real tasks, this is still outstanding:
>>
>> - transaction subsystem
>> - security
>> - webservices
>> - threads
>> - logging
>>
>> But we expect this to be ready for 7.0.CR1.
>>
>>
>> Give it try& let us know what you think.
>> Tell us for works and what doesn't.
>>
>>
>> Ike
>
> _______________________________________________
> jboss-as7-dev mailing list
> jboss-as7-dev(a)lists.jboss.org
>
https://lists.jboss.org/mailman/listinfo/jboss-as7-dev
_______________________________________________
jboss-as7-dev mailing list
jboss-as7-dev(a)lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-as7-dev