[JBoss JIRA] (WFCORE-2007) standalone.sh fails to backup gc.log.#.current file silently.
by Lin Gao (JIRA)
[ https://issues.jboss.org/browse/WFCORE-2007?page=com.atlassian.jira.plugi... ]
Lin Gao moved JBEAP-7388 to WFCORE-2007:
----------------------------------------
Project: WildFly Core (was: JBoss Enterprise Application Platform)
Key: WFCORE-2007 (was: JBEAP-7388)
Workflow: GIT Pull Request workflow (was: CDW with loose statuses v1)
Component/s: Scripts
(was: Scripts)
Affects Version/s: (was: 7.0.0.GA)
(was: 7.0.1.GA)
(was: 7.0.2.GA)
(was: 7.0.3.GA)
(was: 7.1.0.DR7)
Fix Version/s: (was: 7.1.0.GA)
> standalone.sh fails to backup gc.log.#.current file silently.
> -------------------------------------------------------------
>
> Key: WFCORE-2007
> URL: https://issues.jboss.org/browse/WFCORE-2007
> Project: WildFly Core
> Issue Type: Bug
> Components: Scripts
> Environment: * Red Hat Enterprise Linux
> * This problem occurs on JBoss EAP 7.0.0.GA and later, but does not occur on EAP 6.4.x.
> Reporter: Lin Gao
> Assignee: Tomaz Cerar
> Labels: downstream_dependency
>
> gc.log.*.current enclosed with double quotes in the following line (line 265) in standalone.sh is not evaluated as a wildcard by bash,
> {code:java}
> mv "$JBOSS_LOG_DIR/gc.log.*.current" "$JBOSS_LOG_DIR/backupgc.log.current" >/dev/null 2>&1
> {code}
> therefore standalone.sh fails to move an existing gc.log.<number>.current file to backupgc.log.current silently.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 7 months
[JBoss JIRA] (ELY-763) Add trace logging to AuthenticationConfiguration
by Darran Lofthouse (JIRA)
[ https://issues.jboss.org/browse/ELY-763?page=com.atlassian.jira.plugin.sy... ]
Darran Lofthouse commented on ELY-763:
--------------------------------------
Probably needs to be StringBuilder based otherwise each node in the hierarchy will perform it's own String concatenation.
> Add trace logging to AuthenticationConfiguration
> ------------------------------------------------
>
> Key: ELY-763
> URL: https://issues.jboss.org/browse/ELY-763
> Project: WildFly Elytron
> Issue Type: Enhancement
> Components: Authentication Client
> Reporter: Darran Lofthouse
> Assignee: Darran Lofthouse
> Fix For: 1.1.0.Beta15
>
>
> Where an AuthenticationConfiguration instance is selected for use we need to be able to log the resulting configuration.
> It should be possible to call a toString or equivalent that navigates the full hierarchy to log the settings in order.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 7 months
[JBoss JIRA] (JGRP-2128) MERGE3: incorrect merge
by Dan Berindei (JIRA)
[ https://issues.jboss.org/browse/JGRP-2128?page=com.atlassian.jira.plugin.... ]
Dan Berindei commented on JGRP-2128:
------------------------------------
[~anjith_p] It doesn't sound at all like power off... If the VM is shut down, then it wouldn't have the same JGroups address/view when it comes back up. It sounds more like the VM is really suspended and when it resumes, it re-joins the network with the same view it had before suspension. (Perhaps trying to suspect nodes immediately after resuming, as timers in FD expire.)
> MERGE3: incorrect merge
> -----------------------
>
> Key: JGRP-2128
> URL: https://issues.jboss.org/browse/JGRP-2128
> Project: JGroups
> Issue Type: Bug
> Reporter: Bela Ban
> Assignee: Bela Ban
> Labels: CR3
> Fix For: 3.6.12, 4.0
>
> Attachments: BrokerPE-0.zip, SEM03VVM-201.zip, SEM03VVM-202.zip
>
>
> The following merge is incorrect, investigate what the desired behavior should be.
> Link: http://stackoverflow.com/questions/40492204/incorrect-merge-views-with-in...
> {noformat}
> (Incoming-1,BrokerPE-0-28575) ISPN000094: Received new cluster view for channel ISPN: [BrokerPE-0-28575|2] (3) [BrokerPE-0-28575, SEM03VVM-201-59385, SEM03VVM-202-33714]
> ISPN000094: Received new cluster view for channel ISPN: [BrokerPE-0-28575|3] (2) [BrokerPE-0-28575, SEM03VVM-202-33714] --> one node disconnected
> ISPN000093: Received new, MERGED cluster view for channel ISPN: MergeView::[BrokerPE-0-28575|4] (2) [BrokerPE-0-28575, SEM03VVM-201-59385], 2 subgroups: [BrokerPE-0-28575|3] (2) [BrokerPE-0-28575, SEM03VVM-202-33714], [BrokerPE-0-28575|2] (3) [BrokerPE-0-28575, SEM03VVM-201-59385, SEM03VVM-202-33714] --> incorrect merge
> {noformat}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 7 months
[JBoss JIRA] (WFCORE-2003) replacement expression in access-control
by Darran Lofthouse (JIRA)
[ https://issues.jboss.org/browse/WFCORE-2003?page=com.atlassian.jira.plugi... ]
Darran Lofthouse commented on WFCORE-2003:
------------------------------------------
I would suggest holding off until after WildFly Elytron is integrated, WildFly Elytron is adding a lot more flexibility regarding mapping information obtained from the identity store.
> replacement expression in access-control
> ----------------------------------------
>
> Key: WFCORE-2003
> URL: https://issues.jboss.org/browse/WFCORE-2003
> Project: WildFly Core
> Issue Type: Feature Request
> Components: Domain Management
> Affects Versions: 2.1.0.Final
> Environment: EAP7.0.3
> Reporter: Hisanobu Okuda
> Assignee: Brian Stansberry
>
> Our customer wants to use replacement expression in `<access-control/>`:
> {code}
> ${env.VARNAME} for environemt vars
> ${VARNAME} for system properties
> ${VAULT::BLOCK::attribute::1} for vars stored inside jboss vault
> {code}
> Example:
> while adding group in for any role like (SuperUser) .
> {code}
> /core-service=management/access=authorization/role-mapping=SuperUser/include="group_admin":add(name="${ldap_admin_grp}", type=GROUP)
> {code}
> resulting :
> {code}
> <role name="SuperUser">
> <include>
> <user name="$local"/>
> <group alias="group_admin" name="${ldap_admin_grp}"/>
> </include>
> </role>
> {code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 7 months
[JBoss JIRA] (ELY-764) AuthenticationConfiguration should support specifying the 'protocol' for mechanism creation.
by Darran Lofthouse (JIRA)
Darran Lofthouse created ELY-764:
------------------------------------
Summary: AuthenticationConfiguration should support specifying the 'protocol' for mechanism creation.
Key: ELY-764
URL: https://issues.jboss.org/browse/ELY-764
Project: WildFly Elytron
Issue Type: Enhancement
Components: Authentication Client
Reporter: Darran Lofthouse
Assignee: Darran Lofthouse
Fix For: 1.1.0.Beta15
Some mechanisms make use of this to verify the server and may require an override.
As an example for Kerberos a server would commonly have an identity HTTP/server-name.
Whilst an administrator may be able to map this to REMOTE+HTTP/server-name they may prefer to override the SASL mechanisms expectation and set protocol to HTTP.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 7 months
[JBoss JIRA] (WFCORE-2004) replacement expression in access-control
by Hisanobu Okuda (JIRA)
Hisanobu Okuda created WFCORE-2004:
--------------------------------------
Summary: replacement expression in access-control
Key: WFCORE-2004
URL: https://issues.jboss.org/browse/WFCORE-2004
Project: WildFly Core
Issue Type: Feature Request
Components: Domain Management
Affects Versions: 2.1.0.Final
Environment: EAP7.0.3
Reporter: Hisanobu Okuda
Assignee: Brian Stansberry
Our customer wants to use replacement expression in `<access-control/>`:
{code}
${env.VARNAME} for environemt vars
${VARNAME} for system properties
${VAULT::BLOCK::attribute::1} for vars stored inside jboss vault
{code}
Example:
while adding group in for any role like (SuperUser) .
{code}
/core-service=management/access=authorization/role-mapping=SuperUser/include="group_admin":add(name="${ldap_admin_grp}", type=GROUP)
{code}
resulting :
{code}
<role name="SuperUser">
<include>
<user name="$local"/>
<group alias="group_admin" name="${ldap_admin_grp}"/>
</include>
</role>
{code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 7 months
[JBoss JIRA] (WFCORE-2003) replacement expression in access-control
by Hisanobu Okuda (JIRA)
Hisanobu Okuda created WFCORE-2003:
--------------------------------------
Summary: replacement expression in access-control
Key: WFCORE-2003
URL: https://issues.jboss.org/browse/WFCORE-2003
Project: WildFly Core
Issue Type: Feature Request
Components: Domain Management
Affects Versions: 2.1.0.Final
Environment: EAP7.0.3
Reporter: Hisanobu Okuda
Assignee: Brian Stansberry
Our customer wants to use replacement expression in `<access-control/>`:
{code}
${env.VARNAME} for environemt vars
${VARNAME} for system properties
${VAULT::BLOCK::attribute::1} for vars stored inside jboss vault
{code}
Example:
while adding group in for any role like (SuperUser) .
{code}
/core-service=management/access=authorization/role-mapping=SuperUser/include="group_admin":add(name="${ldap_admin_grp}", type=GROUP)
{code}
resulting :
{code}
<role name="SuperUser">
<include>
<user name="$local"/>
<group alias="group_admin" name="${ldap_admin_grp}"/>
</include>
</role>
{code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 7 months