Skip to Content.
Sympa Menu

grouper-users - RE: [grouper-users] grouper-ui startup issues

Subject: Grouper Users - Open Discussion List

List archive

RE: [grouper-users] grouper-ui startup issues


Chronological Thread 
  • From: "Black, Carey M." <>
  • To: T-Heetderks <>, "" <>
  • Subject: RE: [grouper-users] grouper-ui startup issues
  • Date: Thu, 11 Jun 2020 01:57:44 +0000
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=osu.edu; dmarc=pass action=none header.from=osu.edu; dkim=pass header.d=osu.edu; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=ckWeo2Zd2swDvKDPMg8lT0i3Xx1qpmvJ55olkiBLXEM=; b=MXcwysE9i13OUHxiHFmOEUOo6nBRdAzFvB54VtqpiVwQqR97wgjkwjC4AFUnj29pNlTi6LNEO0oxlxSbwg+1x/HLeXQFVJ9ujJNmTHGno1DsAD1sTccliKLZGwp3otfuQr4cEEchcTd/x5vw7PuouXnPn55zJXatl4EdKdu9NHfPrdeypTqnPOeC3TEd0yE8QJA7ZHgBlgWeHqX9mZG2IOLCL4FI12ThbogrpEeDpmZA+iWNfkSGtvccoq6b53UoTvhBAI6H+JChfaQ8YRyjzyLejYLDWuV/kaVw6bdO20TlDP5gP7OuuzGnTD6YyNPDqv6jPeDONsDfU4FRJdyIsA==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=XFE0xPT/ZC87mVoyvbcGR21V5X35EoWQosVPm+whtxSmxEErHJ3FI0gA796JIhk8l0JhMvLMR1KQ4B3sUt2fIorLc0OiBYIpBaGwa9xwt1/y06zBaFiBE58aTICXpfPThhp3S0nMQMbH0dlN81oq1s8RQNPpwzB5fS1yhaw2PMqU4WIr01nnuXGjTsspsteC3sVQEYrZ5YSKzBlb004Zi0ggx5ZiRpooXmWnT2Ky+aJlsPx+wUPmxXFCclwE6SXpi+scp6K8cDEsQX8LNslwXRheJ5f5Y9V86Z+ukmdVTBiuZHIL7qYGIkGHYSX2KqLN5gQDtxKdcD2FPRxWfuAJow==

Thomas ,

Wow.. that log is really hard to read after it was forward through the
mailing list.. ( ugh...)
But, If I am skimming it right... it mostly looks ok to me.

Good parts:

INFO org.apache.catalina.startup.HostConfig-Deployment of deployment
descriptor [/opt/tomee/conf/Catalina/localhost/grouper.xml] has finished in
[8,444] ms
...
[main] INFO org.apache.catalina.startup.Catalina- Server startup in 8618 ms




Up until this point:
|
httpd;access_log;-;-;153.90.14.18 - - [10/Jun/2020:22:09:00 +0000] ...

That line does not make sense to me.
I would expect to see lines like this:

... Detected Grouper directory structure 'webapp' (valid is api, apiMvn,
webapp)
... Using GROUPER_HOME: /opt/grouper/grouperWebapp/WEB-INF
... Using GROUPER_CONF: /opt/grouper/grouperWebapp/WEB-INF/classes
... Using JAVA:
/usr/lib/jvm/java-1.8.0-amazon-corretto/bin/java
... Using CLASSPATH:
/opt/grouper/grouperWebapp/WEB-INF/classes:/opt/grouper/grouperWebapp/WEB-INF/lib/*



So my *guess* is that the container is not talking to the RDBMS.
But I also know _nothing_ about docker swarm too... So maybe it is
something with those parts of how you are starting the container?
Why are you publishing "--publish 3306:3306" ?? Are you running a MySQL DB
in the container?

Maybe try to get it to "docker run" first? Then when that works try to work
out the "docker service" stuff as a second task?

This page (
https://spaces.at.internet2.edu/display/Grouper/Install+the+Grouper+v2.5+container+with+maturity+level+0+manually
) has a "sample" "docker run" command as this:

docker run --detach \
--mount
type=bind,src=/opt/grouperContainer/logs/grouper-ui-logs,dst=/opt/grouper/logs
\
--mount
type=bind,src=/opt/grouperContainer/slashRoot,dst=/opt/grouper/slashRoot -e
RUN_SHIB_SP='false' \
-e SELF_SIGNED_CERT='true' \
--name grouper-ui \
--publish 443:443 \
i2incommon/grouper:2.5.XX ui


HTH.
--
Carey Matthew


-----Original Message-----
From:
<> On Behalf Of T-Heetderks
Sent: Wednesday, June 10, 2020 7:04 PM
To:
Subject: [grouper-users] grouper-ui startup issues

the grouper-ui is not starting up right...
I am trying to run the ui as a service with this docker command:

sudo docker service create --detach --publish 443:443 --publish 3306:3306 --
name grouper-ui \
--secret grouper_grouper.hibernate.properties \
--secret grouper_morphString.properties \
--secret source=sp-key.pem,target=shib_sp-key.pem \
--config source=grouper.properties,target=/opt/grouper/conf/
grouper.properties \
--config source=sp-cert.pem,target=/etc/shibboleth/sp-cert.pem \
--config source=shibboleth2.xml,target=/etc/shibboleth/shibboleth2.xml \
--config source=idp-metadata.xml,target=/etc/shibboleth/idp-metadata.xml \
--secret source=host-key.pem,target=host-key.pem \
--config source=host-cert.pem,target=/etc/pki/tls/certs/host-cert.pem \
--config source=host-cert.pem,target=/etc/pki/tls/certs/cachain.pem \
i2incommon/grouper:2.5.29 ui

In the logs-- I see a bunch of issues with:

tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,325
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs...

I think I may be having similar issues with ws...
The entire logs follows.

Thanks in advance!
- Thomas

| executing
ui
| removed '/
opt/tomee/lib/slf4j-api-1.7.21.jar'
| removed '/
opt/tomee/lib/slf4j-jdk14-1.7.21.jar'
| '/opt/
grouper/grouperWebapp/WEB-INF/lib/slf4j-api-1.7.21.jar' -> '/opt/tomee/lib/
slf4j-api-1.7.21.jar'
| '/opt/
grouper/grouperWebapp/WEB-INF/lib/slf4j-jdk14-1.7.21.jar' -> '/opt/tomee/lib/
slf4j-jdk14-1.7.21.jar'
| removed '/
opt/grouper/grouperWebapp/WEB-INF/lib/slf4j-jdk14-1.7.21.jar'
| patching
file /opt/tomee/conf/server.xml
| removed '/
opt/tomee/lib/hsqldb-2.3.2.jar'
| '/opt/
grouper/grouperWebapp/WEB-INF/lib/hsqldb-2.3.5.jar' -> '/opt/tomee/lib/
hsqldb-2.3.5.jar'
| chown:
cannot access '/opt/grouper/grouperWebapp/WEB-INF/lib/slf4j-jdk14-1.7.21.jar':
No such file or directory
| chown:
cannot access '/opt/tomee/lib/hsqldb-2.3.2.jar': No such file or directory
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO XMLTooling.Config : xmltooling
3.1.0 library initialization complete
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO OpenSAML.Config : opensaml 3.1.0
library initialization complete
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Config : shibboleth
3.1.0 library initialization complete
|
httpd;console;;; [env:warn] [pid 88:tid AH01506: PassEnv variable ENV was
undefined
|
httpd;console;;; [env:warn] [pid 88:tid AH01506: PassEnv variable USERTOKEN
was undefined
|
[suexec:notice] [pid 88:tid AH01232: suEXEC mechanism enabled (wrapper: /usr/
sbin/suexec)
|
[env:warn] [pid 88:tid AH01506: PassEnv variable ENV was undefined
|
[env:warn] [pid 88:tid AH01506: PassEnv variable USERTOKEN was undefined
|
[lbmethod_heartbeat:notice] [pid 88:tid AH02282: No slotmem from
mod_heartmonitor
|
[ssl:warn] [pid 88:tid AH01873: Init: Session Cache is not configured [hint:
SSLSessionCache]
|
[mpm_prefork:notice] [pid 88:tid AH00163: Apache/2.4.6 (CentOS) OpenSSL/
1.0.2k-fips configured -- resuming normal operations
|
[core:notice] [pid 88:tid AH00094: Command line: 'httpd -D FOREGROUND'
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Config : loaded XML
resource (/etc/shibboleth/shibboleth2.xml)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Config : Shibboleth SP
Version 3.1.0
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Config : Library
versions: log4shib 2.0.0, Xerces-C 3.2.3, XML-Security-C 2.0.2, XMLTooling-C
3.1.0, OpenSAML-C 3.1.0, Shibboleth 3.1.0
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Config : building
ListenerService of type UnixListener...
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Listener : using socket
address: shibd.sock
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Config : no
StorageService plugin(s) installed, using (mem) in-memory instance
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Config : no ReplayCache
specified, using arbitrary StorageService instance
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Config : no ArtifactMap
specified, building in-memory ArtifactMap...
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Config : no SessionCache
specified, using StorageService-backed instance
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.SessionCache : bound to
arbitrary StorageService
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.SessionCache :
StorageService for 'lite' use not set, using standard StorageService
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Config : building
SecurityPolicyProvider of type XML...
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO
Shibboleth.SecurityPolicyProvider.XML : loaded XML resource (/etc/shibboleth/
security-policy.xml)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO
OpenSAML.SecurityPolicyRule.Conditions : building SecurityPolicyRule of type
Audience
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO
OpenSAML.SecurityPolicyRule.MessageFlow : enabling request/response
correlation checking to block unsolicited responses
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO
OpenSAML.SecurityPolicyRule.Conditions : building SecurityPolicyRule of type
Audience
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO
OpenSAML.SecurityPolicyRule.BearerConfirmation : enabling request/response
correlation checking to block unsolicited responses
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO
OpenSAML.SecurityPolicyRule.Conditions : building SecurityPolicyRule of type
Audience
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO
OpenSAML.SecurityPolicyRule.Conditions : building SecurityPolicyRule of type
Ignore
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO
OpenSAML.SecurityPolicyRule.Conditions : building SecurityPolicyRule of type
Ignore
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO
OpenSAML.SecurityPolicyRule.Conditions : building SecurityPolicyRule of type
Ignore
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Config : automatically
blacklisting security algorithm
(https://urldefense.com/v3/__http://www.w3.org/2001/04/xmldsig-more*rsa-md5__;Iw!!KGKeukY!kBjgEo5AEbXvI-wLTvxQjHv1-0s2xKGi_5FkZ7rR1-ENKVs8enH8ZA5rpkhhU901tHs$
)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Config : automatically
blacklisting security algorithm
(https://urldefense.com/v3/__http://www.w3.org/2001/04/xmldsig-more*md5__;Iw!!KGKeukY!kBjgEo5AEbXvI-wLTvxQjHv1-0s2xKGi_5FkZ7rR1-ENKVs8enH8ZA5rpkhh4L8dDOM$
)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Config : automatically
blacklisting security algorithm
(https://urldefense.com/v3/__http://www.w3.org/2001/04/xmlenc*rsa-1_5__;Iw!!KGKeukY!kBjgEo5AEbXvI-wLTvxQjHv1-0s2xKGi_5FkZ7rR1-ENKVs8enH8ZA5rpkhhZKw-GUY$
)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Config : building
ProtocolProvider of type XML...
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO XMLTooling.StorageService : cleanup
thread started...running every 900 seconds
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.ProtocolProvider.XML :
loaded XML resource (/etc/shibboleth/protocols.xml)
|
shibd;shibd.log;;;2020-06-10 22:01:36 WARN Shibboleth.Application : insecure
cookieProps setting, set to "https" for SSL/TLS-only usage
|
shibd;shibd.log;;;2020-06-10 22:01:36 WARN Shibboleth.Application : handlerSSL
should be enabled for SSL/TLS-enabled web sites
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Application : auto-
configuring SSO initiation for protocol (SAML2)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Application : adding
SessionInitiator of type (SAML2) to chain (/Login)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Application : auto-
configuring ArtifactResolution endpoints for protocol (SAML2)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Application : adding
ArtifactResolutionService for Binding
(urn:oasis:names:tc:SAML:2.0:bindings:SOAP) at (/Artifact/SOAP)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Application : auto-
configuring SSO endpoints for protocol (SAML2)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Application : adding
AssertionConsumerService for Binding
(urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST) at (/SAML2/POST)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Application : adding
AssertionConsumerService for Binding
(urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST-SimpleSign) at (/SAML2/POST-
SimpleSign)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Application : adding
AssertionConsumerService for Binding
(urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Artifact) at (/SAML2/Artifact)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Application : adding
AssertionConsumerService for Binding
(urn:oasis:names:tc:SAML:2.0:bindings:PAOS) at (/SAML2/ECP)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Application : auto-
configuring Logout initiation for protocol (SAML2)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Application : adding
LogoutInitiator of type (SAML2) to chain (/Logout)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Application : auto-
configuring Logout endpoints for protocol (SAML2)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Application : adding
SingleLogoutService for Binding (urn:oasis:names:tc:SAML:2.0:bindings:SOAP) at
(/SLO/SOAP)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Application : adding
SingleLogoutService for Binding
(urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect) at (/SLO/Redirect)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Application : adding
SingleLogoutService for Binding
(urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST) at (/SLO/POST)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Application : adding
SingleLogoutService for Binding
(urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Artifact) at (/SLO/Artifact)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Application : auto-
configuring Logout initiation for protocol (Local)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Application : adding
LogoutInitiator of type (Local) to chain (/Logout)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Handler.DiscoveryFeed :
feed files will be cached in /var/cache/shibboleth/
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Application : building
MetadataProvider of type XML...
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO OpenSAML.MetadataProvider.XML :
loaded XML resource (/etc/shibboleth/idp-metadata.xml)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Application : no
TrustEngine specified or installed, using default of ExplicitKey
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Application : building
AttributeExtractor of type XML...
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.AttributeExtractor.XML :
loaded XML resource (/etc/shibboleth/attribute-map.xml)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.AttributeExtractor.XML :
creating mapping for Attribute urn:oid:1.3.6.1.4.1.5923.1.1.1.6
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.AttributeExtractor.XML :
creating mapping for Attribute
urn:mace:dir:attribute-def:eduPersonPrincipalName
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.AttributeExtractor.XML :
creating mapping for Attribute urn:oid:1.3.6.1.4.1.5923.1.1.1.9
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.AttributeExtractor.XML :
creating mapping for Attribute
urn:mace:dir:attribute-def:eduPersonScopedAffiliation
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.AttributeExtractor.XML :
creating mapping for Attribute urn:oid:1.3.6.1.4.1.5923.1.1.1.1
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.AttributeExtractor.XML :
creating mapping for Attribute urn:mace:dir:attribute-def:eduPersonAffiliation
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.AttributeExtractor.XML :
creating mapping for Attribute urn:oid:1.3.6.1.4.1.5923.1.1.1.7
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.AttributeExtractor.XML :
creating mapping for Attribute urn:mace:dir:attribute-def:eduPersonEntitlement
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.AttributeExtractor.XML :
creating mapping for Attribute urn:mace:dir:attribute-def:eduPersonTargetedID
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.AttributeExtractor.XML :
creating mapping for Attribute urn:oid:1.3.6.1.4.1.5923.1.1.1.10
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.AttributeExtractor.XML :
creating mapping for Attribute
urn:oasis:names:tc:SAML:2.0:nameid-format:persistent
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.AttributeExtractor.XML :
creating mapping for Attribute urn:oid:0.9.2342.19200300.100.1.1
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.AttributeExtractor.XML :
creating mapping for Attribute urn:oid:0.9.2342.19200300.100.1.3
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Application : building
AttributeFilter of type XML...
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.AttributeFilter : loaded
XML resource (/etc/shibboleth/attribute-policy.xml)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Application : building
CredentialResolver of type File...
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO XMLTooling.SecurityHelper : loading
private key from file (/etc/shibboleth/sp-key.pem)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO XMLTooling.SecurityHelper : loading
certificate(s) from file (/etc/shibboleth/sp-cert.pem)
|
shibd;shibd.log;;;2020-06-10 22:01:36 INFO Shibboleth.Listener : listener
service starting
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,055 [main]
WARN org.apache.catalina.startup.ClassLoaderFactory- Problem with JAR file [/
opt/tomee/lib/hsqldb-2.3.2.jar], exists: [false], canRead: [false]
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,068 [main]
WARN org.apache.catalina.startup.ClassLoaderFactory- Problem with JAR file [/
opt/tomee/lib/hsqldb-2.3.2.jar], exists: [false], canRead: [false]
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,330 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- Server version name:
Apache Tomcat (TomEE)/8.5.50 (7.0.7)
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,330 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- Server built:
Dec 7 2019 19:19:46 UTC
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,330 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- Server version
number: 8.5.50.0
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,331 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- OS Name:
Linux
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,331 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- OS Version:
3.10.0-1127.8.2.el7.x86_64
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,331 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- Architecture:
amd64
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,331 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- Java
Home: /usr/lib/jvm/java-1.8.0-amazon-corretto/jre
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,331 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- JVM Version:
1.8.0_252-b09
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,331 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- JVM Vendor:
Amazon.com Inc.
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,331 [main]
INFO org.apache.catalina.startup.VersionLoggerListener-
CATALINA_BASE: /opt/tomee
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,331 [main]
INFO org.apache.catalina.startup.VersionLoggerListener-
CATALINA_HOME: /opt/tomee
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,332 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- Command line
argument: -Dnop
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,332 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- Command line
argument: -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,332 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- Command line
argument: -javaagent:/opt/tomee/lib/openejb-javaagent.jar
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,332 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- Command line
argument: -Djdk.tls.ephemeralDHKeySize=2048
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,332 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- Command line
argument: -Djava.protocol.handler.pkgs=org.apache.catalina.webresources
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,332 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- Command line
argument: -Dorg.apache.catalina.security.SecurityListener.UMASK=0027
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,333 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- Command line
argument: -Xmx1500m
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,333 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- Command line
argument: -XX:+UseG1GC
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,333 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- Command line
argument: -XX:+UseStringDeduplication
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,333 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- Command line
argument: -Dlog4j.configurationFile=/opt/tomee/conf/log4j2.xml
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,333 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- Command line
argument: -DENV=
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,333 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- Command line
argument: -DUSERTOKEN=
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,333 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- Command line
argument: -Dfile.encoding=UTF-8
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,333 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- Command line
argument: -Dignore.endorsed.dirs=
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,334 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- Command line
argument: -Dcatalina.base=/opt/tomee
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,334 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- Command line
argument: -Dcatalina.home=/opt/tomee
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,334 [main]
INFO org.apache.catalina.startup.VersionLoggerListener- Command line
argument: -Djava.io.tmpdir=/opt/tomee/temp
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,334 [main]
INFO org.apache.catalina.core.AprLifecycleListener- The APR based Apache
Tomcat Native library which allows optimal performance in production
environments was not found on the java.library.path: [/opt/shibboleth/
lib64::/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib]
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,406 [main]
INFO org.apache.coyote.http11.Http11NioProtocol- Initializing ProtocolHandler
["http-nio-8080"]
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,414 [main]
INFO org.apache.tomcat.util.net.NioSelectorPool- Using a shared selector for
servlet write/read
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,423 [main]
INFO org.apache.coyote.ajp.AjpNioProtocol- Initializing ProtocolHandler
["ajp-nio-8009"]
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,424 [main]
INFO org.apache.tomcat.util.net.NioSelectorPool- Using a shared selector for
servlet write/read
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,638 [main]
INFO OpenEJB.options- Using 'openejb.jdbc.datasource-
creator=org.apache.tomee.jdbc.TomEEDataSourceCreator'
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,729 [main]
INFO OpenEJB-
********************************************************************************
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,729 [main]
INFO OpenEJB- OpenEJB
https://urldefense.com/v3/__http://tomee.apache.org/__;!!KGKeukY!kBjgEo5AEbXvI-wLTvxQjHv1-0s2xKGi_5FkZ7rR1-ENKVs8enH8ZA5rpkhh2yyExfM$

|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,729 [main]
INFO OpenEJB- Startup: Wed Jun 10 22:01:37 UTC 2020
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,729 [main]
INFO OpenEJB- Copyright 1999-2018 (C) Apache OpenEJB Project, All Rights
Reserved.
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,729 [main]
INFO OpenEJB- Version: 7.0.7
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,729 [main]
INFO OpenEJB- Build date: 20200107
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,730 [main]
INFO OpenEJB- Build time: 01:11
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,730 [main]
INFO OpenEJB-
********************************************************************************
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,730 [main]
INFO OpenEJB.startup- openejb.home = /opt/tomee
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,730 [main]
INFO OpenEJB.startup- openejb.base = /opt/tomee
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,731 [main]
INFO OpenEJB.cdi- Created new singletonService
org.apache.openejb.cdi.ThreadSingletonServiceImpl@47d9a273
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,731 [main]
INFO OpenEJB.cdi- Succeeded in installing singleton service
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,758 [main]
INFO OpenEJB.startup.config- TomEE configuration file is '/opt/tomee/conf/
tomee.xml'
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,784 [main]
INFO OpenEJB.startup.config- Configuring Service(id=Tomcat Security Service,
type=SecurityService, provider-id=Tomcat Security Service)
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,785 [main]
INFO OpenEJB.startup.config- Configuring Service(id=Default Transaction
Manager, type=TransactionManager, provider-id=Default Transaction Manager)
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,786 [main]
INFO OpenEJB.options- Using 'openejb.deployments.classpath=false'
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,788 [main]
INFO OpenEJB.startup.service- Creating TransactionManager(id=Default
Transaction Manager)
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,824 [main]
INFO OpenEJB.startup.service- Creating SecurityService(id=Tomcat Security
Service)
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,866 [main]
INFO OpenEJB.server- Creating ServerService(id=cxf-rs)
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,976 [main]
INFO OpenEJB.server- ** Bound Services **
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,976 [main]
INFO OpenEJB.server- NAME IP PORT
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,976 [main]
INFO OpenEJB.server- -------
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,976 [main]
INFO OpenEJB.server- Ready!
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,977 [main]
INFO org.apache.catalina.startup.Catalina- Initialization processed in 848 ms
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,994 [main]
INFO OpenEJB.tomcat- Importing a Tomcat Resource with id 'UserDatabase' of
type 'org.apache.catalina.UserDatabase'.
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:37,995 [main]
INFO OpenEJB.startup.service- Creating Resource(id=UserDatabase)
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:38,003 [main]
INFO org.apache.catalina.core.StandardService- Starting service [Catalina]
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:38,003 [main]
INFO org.apache.catalina.core.StandardEngine- Starting Servlet Engine: Apache
Tomcat (TomEE)/8.5.50 (7.0.7)
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:38,012
[localhost-startStop-1] INFO org.apache.catalina.startup.HostConfig-
Deploying deployment descriptor [/opt/tomee/conf/Catalina/localhost/
grouper.xml]
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:38,023
[localhost-startStop-1] INFO OpenEJB.tomcat- -------------------------
localhost -> /grouper
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,263
[localhost-startStop-1] INFO OpenEJB.startup.config- Configuring enterprise
application: /opt/grouper/grouperWebapp
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,325
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.LogTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,325
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.RequestTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,326
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.IsSecureTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,326
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.IsSessionFromCookieTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,327
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.IsSessionFromURLTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,327
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.IsSessionValidTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,328
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.IsUserInRoleTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,328
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.AttributeTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,328
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.AttributesTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,329
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.EqualsAttributeTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,330
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.ExistsAttributeTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,330
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.RemoveAttributeTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,330
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.SetAttributeTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,331
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.CookieTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,331
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.CookiesTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,332
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.EqualsCookieTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,332
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.ExistsCookieTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,333
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.HeaderTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,333
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.HeadersTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,333
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.EqualsHeaderTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,334
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.ExistsHeaderTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,335
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.HeaderValuesTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,335
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.ParameterTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,335
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.ParametersTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,336
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.EqualsParameterTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,336
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.ExistsParameterTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,336
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.ParameterValuesTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,337
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.QueryStringTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,337
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.QueryStringsTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,338
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.request.ExistsQueryStringTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,349
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.datetime.CurrentTimeTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,349
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.datetime.FormatTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,350
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.datetime.ParseTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,350
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.datetime.TimeZoneTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,351
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.datetime.TimeZonesTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,351
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.datetime.MonthsTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,351
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.datetime.WeekdaysTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,352
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.datetime.AmPmsTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,352
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: org.apache.taglibs.datetime.ErasTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,355
[localhost-startStop-1] ERROR OpenEJB.startup- Unable to load tag library tag
class: edu.internet2.middleware.grouper.ui.ELTileRecorderTag
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,422
[localhost-startStop-1] INFO OpenEJB.startup.config- Configuring
Service(id=Default Managed Container, type=Container, provider-id=Default
Managed Container)
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,423
[localhost-startStop-1] INFO OpenEJB.startup.config- Auto-creating a
container for bean grouper.Comp112060046: Container(type=MANAGED, id=Default
Managed Container)
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,423
[localhost-startStop-1] INFO OpenEJB.startup.service- Creating
Container(id=Default Managed Container)
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,429
[localhost-startStop-1] INFO OpenEJB- Using directory /opt/tomee/temp for
stateful session passivation
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,452
[localhost-startStop-1] INFO OpenEJB.startup.config- Enterprise application
"/opt/grouper/grouperWebapp" loaded.
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,455
[localhost-startStop-1] INFO OpenEJB.startup- Assembling app: /opt/grouper/
grouperWebapp
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:40,557
[localhost-startStop-1] INFO OpenEJB.startup- Deployed Application(path=/opt/
grouper/grouperWebapp)
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:41,452
[localhost-startStop-1] INFO org.apache.jasper.servlet.TldScanner- At least
one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for
this logger for a complete list of JARs that were scanned but no TLDs were
found in them. Skipping unneeded JARs during scanning can improve startup time
and JSP compilation time.
|
tomee;console;;;Grouper starting up: version: 2.5.29, build date: 2020/05/18
22:14:57 +0000, env: <no label configured>
|
tomee;console;;;grouper.properties read from: file:/opt/grouper/grouperWebapp/
WEB-INF/classes/grouper.properties
|
tomee;console;;;Grouper current directory is: /opt/grouper/grouperWebapp/WEB-
INF
|
tomee;console;;;log4j.properties read from: file:/opt/grouper/grouperWebapp/
WEB-INF/classes/log4j.properties
|
tomee;console;;;Grouper is logging to file: /tmp/logpipe, at min level WARN
for package: edu.internet2.middleware.grouper, based on log4j.properties
|
tomee;console;;;grouper.hibernate.properties: file:/opt/grouper/grouperWebapp/
WEB-INF/classes/grouper.hibernate.properties
|
tomee;console;;;grouper.hibernate.properties:
grouper@jdbc:mysql://grouper-ws-2-4-devel.msu.montana.edu:3306/grouper?CharSet=utf8&useUnicode=true&characterEncoding=utf8&connectionCollation=utf8_bin
|
tomee;console;;;
| grouper-
ui;grouper_error.log;;;2020-06-10 22:01:41,550: [localhost-startStop-1] WARN
GrouperStartup.printConfigOnce(234) - - Grouper starting up: version: 2.5.29,
build date: 2020/05/18 22:14:57 +0000, env: <no label configured>
|
grouper.properties read from: file:/opt/grouper/grouperWebapp/WEB-INF/classes/
grouper.properties
| Grouper
current directory is: /opt/grouper/grouperWebapp/WEB-INF
|
log4j.properties read from: file:/opt/grouper/grouperWebapp/WEB-INF/classes/
log4j.properties
| Grouper is
logging to file: /tmp/logpipe, at min level WARN for package:
edu.internet2.middleware.grouper, based on log4j.properties
|
grouper.hibernate.properties: file:/opt/grouper/grouperWebapp/WEB-INF/classes/
grouper.hibernate.properties
|
grouper.hibernate.properties:
grouper@jdbc:mysql://grouper-ws-2-4-devel.msu.montana.edu:3306/grouper?CharSet=utf8&useUnicode=true&characterEncoding=utf8&connectionCollation=utf8_bin
|
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:41,696
[localhost-startStop-1] INFO org.hibernate.Version- HHH000412: Hibernate Core
{5.0.12.Final}
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:41,697
[localhost-startStop-1] INFO org.hibernate.cfg.Environment- HHH000206:
hibernate.properties not found
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:41,699
[localhost-startStop-1] INFO org.hibernate.cfg.Environment- HHH000021:
Bytecode provider name : javassist
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:42,949
[localhost-startStop-1] INFO org.hibernate.annotations.common.Version-
HCANN000001: Hibernate Commons Annotations {5.0.1.Final}
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:43,013
[localhost-startStop-1] INFO
org.hibernate.c3p0.internal.C3P0ConnectionProvider- HHH010002: C3P0 using
driver: com.mysql.jdbc.Driver at URL:
jdbc:mysql://grouper-ws-2-4-devel.msu.montana.edu:3306/grouper?CharSet=utf8&useUnicode=true&characterEncoding=utf8&connectionCollation=utf8_bin
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:43,013
[localhost-startStop-1] INFO
org.hibernate.c3p0.internal.C3P0ConnectionProvider- HHH10001001: Connection
properties: {user=grouper, password=****, autocommit=false}
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:43,013
[localhost-startStop-1] INFO
org.hibernate.c3p0.internal.C3P0ConnectionProvider- HHH10001003: Autocommit
mode: false
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:43,143
[localhost-startStop-1] INFO
org.hibernate.c3p0.internal.C3P0ConnectionProvider- HHH10001007: JDBC
isolation level: READ_COMMITTED
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:43,214
[localhost-startStop-1] INFO org.hibernate.dialect.Dialect- HHH000400: Using
dialect: org.hibernate.dialect.MySQL5Dialect
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:43,648
[localhost-startStop-1] WARN org.hibernate.id.UUIDHexGenerator- HHH000409:
Using org.hibernate.id.UUIDHexGenerator which does not generate IETF RFC 4122
compliant UUID values; consider using org.hibernate.id.UUIDGenerator instead
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:43,686
[localhost-startStop-1] WARN org.hibernate.mapping.RootClass- HHH000038:
Composite-id class does not override equals():
edu.internet2.middleware.grouper.service.ServiceRoleView
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:43,686
[localhost-startStop-1] WARN org.hibernate.mapping.RootClass- HHH000039:
Composite-id class does not override hashCode():
edu.internet2.middleware.grouper.service.ServiceRoleView
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:43,739
[localhost-startStop-1] INFO org.hibernate.cache.spi.UpdateTimestampsCache-
HHH000250: Starting update timestamps cache at region:
org.hibernate.cache.spi.UpdateTimestampsCache
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:43,745
[localhost-startStop-1] INFO org.hibernate.cache.internal.StandardQueryCache-
HHH000248: Starting query cache at region:
org.hibernate.cache.internal.StandardQueryCache
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:44,338
[localhost-startStop-1] WARN
org.hibernate.cache.ehcache.AbstractEhcacheRegionFactory- HHH020003: Could not
find a specific ehcache configuration for cache named
[edu.internet2.middleware.grouperClient.jdbc.tableSync.GcGrouperSyncGroup];
using defaults.
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:44,351
[localhost-startStop-1] WARN
org.hibernate.cache.ehcache.AbstractEhcacheRegionFactory- HHH020003: Could not
find a specific ehcache configuration for cache named
[edu.internet2.middleware.grouperClient.jdbc.tableSync.GcGrouperSyncMember];
using defaults.
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:44,385
[localhost-startStop-1] WARN
org.hibernate.cache.ehcache.AbstractEhcacheRegionFactory- HHH020003: Could not
find a specific ehcache configuration for cache named
[edu.internet2.middleware.grouperClient.jdbc.tableSync.GcGrouperSyncJob];
using defaults.
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:44,395
[localhost-startStop-1] WARN
org.hibernate.cache.ehcache.AbstractEhcacheRegionFactory- HHH020003: Could not
find a specific ehcache configuration for cache named
[edu.internet2.middleware.grouperClient.jdbc.tableSync.GcGrouperSyncLog];
using defaults.
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:44,529
[localhost-startStop-1] WARN
org.hibernate.cache.ehcache.AbstractEhcacheRegionFactory- HHH020003: Could not
find a specific ehcache configuration for cache named
[edu.internet2.middleware.grouperClient.jdbc.tableSync.GcGrouperSync]; using
defaults.
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:44,531
[localhost-startStop-1] WARN
org.hibernate.cache.ehcache.AbstractEhcacheRegionFactory- HHH020003: Could not
find a specific ehcache configuration for cache named
[edu.internet2.middleware.grouperClient.jdbc.tableSync.GcGrouperSyncMembership];
using defaults.
| grouper-
ui;grouper_error.log;;;2020-06-10 22:01:44,856: [localhost-startStop-1] WARN
GrouperDdlEngine.updateDdlIfNeededWithStaticSql(751) - - Grouper ddl object
type 'Grouper' has dbVersion: 32 (2.5.0) and java version: 32 (2.5.0)
| grouper-
ui;grouper_error.log;;;2020-06-10 22:01:44,856: [localhost-startStop-1] WARN
GrouperDdlEngine.updateDdlIfNeededWithStaticSql(751) - - Grouper ddl object
type 'Subject' has dbVersion: 1 (1.4.0) and java version: 1 (1.4.0)
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:45,158
[localhost-startStop-1] INFO
org.hibernate.hql.internal.QueryTranslatorFactoryInitiator- HHH000397: Using
ASTQueryTranslatorFactory
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:45,248
[localhost-startStop-1] INFO org.hibernate.cache.internal.StandardQueryCache-
HHH000248: Starting query cache at region:
edu.internet2.middleware.grouper.internal.dao.hib3.Hib3MemberDAO.FindBySubject
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:45,267
[localhost-startStop-1] INFO org.hibernate.cache.internal.StandardQueryCache-
HHH000248: Starting query cache at region:
edu.internet2.middleware.grouper.internal.dao.hib3.Hib3StemDAO.FindByName
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:45,274
[localhost-startStop-1] INFO org.hibernate.cache.internal.StandardQueryCache-
HHH000248: Starting query cache at region:
edu.internet2.middleware.grouper.internal.dao.hib3.Hib3FieldDAO.FindAll
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:45,359
[localhost-startStop-1] INFO org.hibernate.cache.internal.StandardQueryCache-
HHH000248: Starting query cache at region:
edu.internet2.middleware.grouper.internal.dao.hib3.Hib3AttributeDefScopeDAO.FindByUuidOrName
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:45,728
[localhost-startStop-1] INFO org.hibernate.cache.internal.StandardQueryCache-
HHH000248: Starting query cache at region:
edu.internet2.middleware.grouper.internal.dao.hib3.Hib3AttributeAssignActionDAO.FindByAttributeDefId
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:46,110
[localhost-startStop-1] INFO org.hibernate.cache.internal.StandardQueryCache-
HHH000248: Starting query cache at region:
edu.internet2.middleware.grouper.internal.dao.hib3.Hib3GroupDAO.FindByUuid
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:46,246
[localhost-startStop-1] INFO org.hibernate.cache.internal.StandardQueryCache-
HHH000248: Starting query cache at region:
edu.internet2.middleware.grouper.internal.dao.hib3.Hib3GroupDAO.FindByNameSecure
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:46,319
[localhost-startStop-1] INFO org.hibernate.cache.internal.StandardQueryCache-
HHH000248: Starting query cache at region:
edu.internet2.middleware.grouper.internal.dao.hib3.Hib3AttributeDefNameDAO.FindByName
| grouper-
ui;grouper_event.log;;;2020-06-10 22:01:46,322: [localhost-startStop-1] INFO
EventLog.info(156) - -
[39703ddca5214567b448b0a681ab5dc4,'GrouperSystem','application'] add group
type: 'grouperLoader' (10ms)
| grouper-
ui;grouper_error.log;;;2020-06-10 22:01:46,322: [localhost-startStop-1] INFO
EventLog.info(156) - -
[39703ddca5214567b448b0a681ab5dc4,'GrouperSystem','application'] add group
type: 'grouperLoader' (10ms)
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:46,324
[localhost-startStop-1] INFO org.hibernate.cache.internal.StandardQueryCache-
HHH000248: Starting query cache at region:
edu.internet2.middleware.grouper.internal.dao.hib3.Hib3AttributeDefDAO.FindByName
| grouper-
ui;grouper_error.log;;;2020-06-10 22:01:46,371: [localhost-startStop-1] WARN
GrouperStartup.printConfigFollowupOnce(167) - - subject.properties read
from: /opt/grouper/grouperWebapp/WEB-INF/classes/subject.properties
| sources
configured in: subject.properties
|
subject.properties internalsource id:g:isa
|
subject.properties groupersource id: g:gsa
|
subject.properties groupersource id: grouperEntities
|
subject.properties jdbc source id: jdbc: GrouperJdbcConnectionProvider
|
tomee;console;;;subject.properties read from: /opt/grouper/grouperWebapp/WEB-
INF/classes/subject.properties
|
tomee;console;;;sources configured in: subject.properties
|
tomee;console;;;subject.properties internalsource id:g:isa
|
tomee;console;;;subject.properties groupersource id: g:gsa
|
tomee;console;;;subject.properties groupersource id: grouperEntities
|
tomee;console;;;subject.properties jdbc source id: jdbc:
GrouperJdbcConnectionProvider
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:46,404
[localhost-startStop-1] INFO org.hibernate.cache.internal.StandardQueryCache-
HHH000248: Starting query cache at region:
edu.internet2.middleware.grouper.internal.dao.hib3.Hib3GroupDAO.FindByName
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:46,415
[pool-2-thread-1] INFO org.hibernate.event.internal.DefaultLoadEventListener-
HHH000327: Error performing load command :
org.hibernate.ObjectNotFoundException: No row with the given identifier
exists:
[edu.internet2.middleware.grouper.app.loader.db.Hib3GrouperDdl#84079d499bcf4c56976baa1c57c32c93]
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:46,456
[localhost-startStop-1] INFO org.apache.catalina.startup.HostConfig-
Deployment of deployment descriptor [/opt/tomee/conf/Catalina/localhost/
grouper.xml] has finished in [8,444] ms
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:46,459
[localhost-startStop-1] INFO org.apache.catalina.startup.HostConfig-
Deploying web application directory [/opt/tomee/webapps/ROOT]
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:46,460
[localhost-startStop-1] INFO OpenEJB.tomcat- -------------------------
localhost -> /
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:46,492
[localhost-startStop-1] INFO OpenEJB.startup.config- Configuring enterprise
application: /opt/tomee/webapps/ROOT
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:46,494
[localhost-startStop-1] INFO OpenEJB.startup.config- Enterprise application
"/opt/tomee/webapps/ROOT" loaded.
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:46,495
[localhost-startStop-1] INFO OpenEJB.startup- Assembling app: /opt/tomee/
webapps/ROOT
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:46,509
[localhost-startStop-1] INFO OpenEJB.startup- Deployed Application(path=/opt/
tomee/webapps/ROOT)
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:46,532
[localhost-startStop-1] INFO org.apache.catalina.startup.HostConfig-
Deployment of web application directory [/opt/tomee/webapps/ROOT] has finished
in [73] ms
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:46,536 [main]
INFO org.apache.coyote.http11.Http11NioProtocol- Starting ProtocolHandler
["http-nio-8080"]
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:46,567 [main]
INFO org.apache.coyote.ajp.AjpNioProtocol- Starting ProtocolHandler ["ajp-
nio-8009"]
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:46,595 [main]
INFO org.apache.catalina.startup.Catalina- Server startup in 8618 ms
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:46,680
[pool-7-thread-1] INFO org.hibernate.cache.internal.StandardQueryCache-
HHH000248: Starting query cache at region:
edu.internet2.middleware.grouper.internal.dao.hib3.Hib3AttributeDefDAO.FindById
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:01:46,688
[pool-7-thread-1] INFO org.hibernate.cache.internal.StandardQueryCache-
HHH000248: Starting query cache at region:
edu.internet2.middleware.grouper.internal.dao.hib3.Hib3AttributeAssignDAO.FindById
|
httpd;access_log;-;-;153.90.14.18 - - [10/Jun/2020:22:09:00 +0000]
"\x16\x03\x01\x012\x01" 400 226 "-" "-"
|
httpd;access_log;-;-;153.90.14.18 - - [10/Jun/2020:22:09:58 +0000]
"\x16\x03\x01\x02" 400 226 "-" "-"
|
httpd;access_log;-;-;153.90.14.18 - - [10/Jun/2020:22:09:58 +0000]
"\x16\x03\x01\x02" 400 226 "-" "-"
|
httpd;access_log;-;-;153.90.14.18 - - [10/Jun/2020:22:09:58 +0000]
"\x16\x03\x01\x02" 400 226 "-" "-"
|
httpd;access_log;-;-;153.90.14.18 - - [10/Jun/2020:22:09:58 +0000]
"\x16\x03\x01\x02" 400 226 "-" "-"
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:31:18,323 [http-
nio-8080-exec-2] INFO org.apache.coyote.http11.Http11Processor- Error parsing
HTTP request header
| Note:
further occurrences of HTTP request parsing errors will be logged at DEBUG
level.
|
java.lang.IllegalArgumentException: Invalid character found in method name.
HTTP method names must be tokens
| at
org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:430)
~[tomcat-coyote.jar:8.5.50]
| at
org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:502)
[tomcat-coyote.jar:8.5.50]
| at
org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)
[tomcat-coyote.jar:8.5.50]
| at
org.apache.coyote.AbstractProtocol
$ConnectionHandler.process(AbstractProtocol.java:810) [tomcat-coyote.jar:
8.5.50]
| at
org.apache.tomcat.util.net.NioEndpoint
$SocketProcessor.doRun(NioEndpoint.java:1623) [tomcat-coyote.jar:8.5.50]
| at
org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
[tomcat-coyote.jar:8.5.50]
| at
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
[?:1.8.0_252]
| at
java.util.concurrent.ThreadPoolExecutor
$Worker.run(ThreadPoolExecutor.java:624) [?:1.8.0_252]
| at
org.apache.tomcat.util.threads.TaskThread
$WrappingRunnable.run(TaskThread.java:61) [tomcat-util.jar:8.5.50]
| at
java.lang.Thread.run(Thread.java:748) [?:1.8.0_252]
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:31:18,323 [http-
nio-8080-exec-1] INFO org.apache.coyote.http11.Http11Processor- Error parsing
HTTP request header
| Note:
further occurrences of HTTP request parsing errors will be logged at DEBUG
level.
|
java.lang.IllegalArgumentException: Invalid character found in method name.
HTTP method names must be tokens
| at
org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:430)
~[tomcat-coyote.jar:8.5.50]
| at
org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:502)
[tomcat-coyote.jar:8.5.50]
| at
org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)
[tomcat-coyote.jar:8.5.50]
| at
org.apache.coyote.AbstractProtocol
$ConnectionHandler.process(AbstractProtocol.java:810) [tomcat-
coyote.jar:8.5.50]
| at
org.apache.tomcat.util.net.NioEndpoint
$SocketProcessor.doRun(NioEndpoint.java:1623) [tomcat-coyote.jar:8.5.50]
| at
org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
[tomcat-coyote.jar:8.5.50]
| at
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
[?:1.8.0_252]
| at
java.util.concurrent.ThreadPoolExecutor
$Worker.run(ThreadPoolExecutor.java:624) [?:1.8.0_252]
| at
org.apache.tomcat.util.threads.TaskThread
$WrappingRunnable.run(TaskThread.java:61) [tomcat-util.jar:8.5.50]
| at
java.lang.Thread.run(Thread.java:748) [?:1.8.0_252]
|
httpd;access_log;-;-;::1 - - [10/Jun/2020:22:33:12 +0000] "GET / HTTP/1.1" 200
201 "-" "curl/7.29.0"
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:33:33,666 [main]
WARN org.apache.catalina.core.StandardServer- Invalid shutdown command [GET /
HTTP/1.1] received
|
tomee;catalina.out;${env:ENV};${env:USERTOKEN};2020-06-10 22:33:41,056 [ajp-
nio-8009-exec-1] ERROR org.apache.coyote.ajp.AjpMessage- Invalid message
received with signature [18245]
|
httpd;access_log;-;-;::1 - - [10/Jun/2020:22:36:42 +0000] "GET / HTTP/1.1" 200
201 "-" "curl/7.29.0"



Archive powered by MHonArc 2.6.19.

Top of Page