Quantcast
Channel: Ignite Realtime : All Content - Openfire Support
Viewing all 4778 articles
Browse latest View live

Openfire 4.1.0 Installation Troubles

$
0
0

Hello Openfire gurus,

 

I'm trying to install Openfire 4.1.0 to take advantage of the Stream Management features. I currently have a deployment of 3.11.0 running on an Amazon EC2 instance and connected to a MySQL database (also in AWS). This has been working fine for some months but now the team I'm with wants to upgrade. One wrinkle in the plan is that we have a custom authentication procedure that I have added to the source code. This is working fine in 3.11.0 and requires no special handling for 4.1.0. I just need to get the source (from Github), make the modifications, build the project, and install on my EC2.

 

I've followed the installation guide here (Openfire: Installation Guide ) and made it to the setup wizard without trouble. I connected the 4.1.0 installation to the same database as 3.11.0. This database has a number of users, chat history, etc etc. Ultimately I want the 4.1.0 installation to use this data, so I connected it to that database. The connection works, and then I go to the admin account setup page. So far this is all stuff I remember from installing 3.11.0.

 

Then, when setting up the admin account, the wizardnever accepts the 'current' admin password. This renders me unable to set the admin password. The page even says 'If this is a new installation, the current password will be "admin"', a suggestion which doesn't work. I then thought maybe the current password would be the admin password I use in the 3.11.0 deployment - it's not that either. I can choose 'Skip this step' to skip setting the admin password, but then I'm unable to log in to the admin console.

 

How can I set the admin password? I've done a lot of Googling on this issue and nothing I've found, including rebooting the server and editing the ofUser database table, has worked. Can anyone help me, please?

 

-- Chris


S2S - SASL authentication failed between two OF instances

$
0
0

Hi there,

 

running into some strange issue between two OF instances - mostly configured the same way but one machine throws the following message during initial s2s connection setup:

 

Unable to authenticated the connection: SASL authentication failed (and dialback is not available)

 

Both using self signed certificates and the s2s config looks like this on both machines:

 

  • STARTTLS policy required
  • Mutual Authentication disabled
  • Certificate chain checking allow self signed + verify cert
  • Encryption Protocols TLS1,2,3 + SSL2 Hello

 

Machine #1 can write message to machine #2 (receivices it) but machine #1 did not receive a written message from machine #2.

 

What kind of missconfiguration can cause this issue? Note that s2s on machine #1 is working properly in both directions with other servers like jabber.ccc.de

OpenFire SSO problems again

$
0
0

Hello,

 

The history: Long time ago there was Openfire 3.9.3 server with SSO working like charm but decision was made to update it to 3.10. After that SSO stopped working even with rollback to 3.9.3, nothing helps. For some time we have to use manual login. After update to 3.10.3 SSO starts working again, to the last week when i have to restart server. It was simple restart, nothing changed but SSO stops again.

 

What I tried:

 

Server: Windows Server 2008 R2, Openfire 4.0.1.

Clients: Windows 7-10 Pro, Miranda-NG (Spark only for tests)

 

Miranda log: <error code="401" type="auth"><not-authorized xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"/></error>

Openfire Info log:org.jivesoftware.openfire.net.SASLAuthentication - User Login Failed. GSS initiate failed

Openfire Debug log:

org.apache.mina.filter.ssl.SslHandler - Unexpected exception from SSLEngine.closeInbound().   javax.net.ssl.SSLException: Inbound closed before receiving peer's close_notify: possible truncation attack?    at sun.security.ssl.Alerts.getSSLException(Unknown Source)    at sun.security.ssl.SSLEngineImpl.fatal(Unknown Source)    at sun.security.ssl.SSLEngineImpl.fatal(Unknown Source)    at sun.security.ssl.SSLEngineImpl.closeInbound(Unknown Source)    at org.apache.mina.filter.ssl.SslHandler.destroy(SslHandler.java:204)    at org.apache.mina.filter.ssl.SslFilter.sessionClosed(SslFilter.java:439)    at org.apache.mina.core.filterchain.DefaultIoFilterChain.callNextSessionClosed(DefaultIoFilterChain.java:382)    at org.apache.mina.core.filterchain.DefaultIoFilterChain.access$900(DefaultIoFilterChain.java:47)    at org.apache.mina.core.filterchain.DefaultIoFilterChain$EntryImpl$1.sessionClosed(DefaultIoFilterChain.java:750)    at org.apache.mina.core.filterchain.IoFilterAdapter.sessionClosed(IoFilterAdapter.java:88)    at org.apache.mina.core.filterchain.DefaultIoFilterChain.callNextSessionClosed(DefaultIoFilterChain.java:382)    at org.apache.mina.core.filterchain.DefaultIoFilterChain.fireSessionClosed(DefaultIoFilterChain.java:375)    at org.apache.mina.core.service.IoServiceListenerSupport.fireSessionDestroyed(IoServiceListenerSupport.java:244)    at org.apache.mina.core.polling.AbstractPollingIoProcessor.removeNow(AbstractPollingIoProcessor.java:600)    at org.apache.mina.core.polling.AbstractPollingIoProcessor.removeSessions(AbstractPollingIoProcessor.java:560)    at org.apache.mina.core.polling.AbstractPollingIoProcessor.access$800(AbstractPollingIoProcessor.java:67)    at org.apache.mina.core.polling.AbstractPollingIoProcessor$Processor.run(AbstractPollingIoProcessor.java:1132)    at org.apache.mina.util.NamePreservingRunnable.run(NamePreservingRunnable.java:64)    at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)    at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)    at java.lang.Thread.run(Unknown Source)      

gss.conf

com.sun.security.jgss.krb5.accept {    com.sun.security.auth.module.Krb5LoginModule required    storeKey=true    keyTab="C:/Program Files (x86)/Openfire/resources/jabber.keytab"    doNotPrompt=true    useKeyTab=true  isInitiator=false    debug=true    realm="DOMAIN.LOCAL    principal="xmpp/server.domain.local@DOMAIN.LOCAL";
};

openfire.xml

[...]  <!-- sasl configuration -->  <sasl>    <!-- Set this to your Keberos realm name which is usually your AD domain name in all caps. -->  </sasl>  <authorization>    <classList>org.jivesoftware.openfire.auth.DefaultAuthorizationPolicy</classList>  </authorization>

krb5.ini

[libdefaults]    default_realm = DOMAIN.LOCAL    default_tkt_enctypes = rc4-hmac des3-cbc-sha1 des-cbc-crc des-cbc-md5    default_tgs_enctypes = rc4-hmac des3-cbc-sha1 des-cbc-crc des-cbc-md5    permitted_enctypes = rc4-hmac des3-cbc-sha1 des-cbc-crc des-cbc-md5
[realms]    DOMAIN.LOCAL = {        kdc = dc.domain.local  admin_server = dc.domain.local        default_domain = domain.local    }
[domain_realms]    domain.local = DOMAIN.LOCAL    .domain.local = DOMAIN.LOCAL

My users Cannont Sign in Please Help!!!

$
0
0

When i click on User/Groups this Error it shows Please Help me. I attached the file

 

 

No one can sign in.

 

I Reinstalled openfire but still its not working.

 

 

 

 

Feb 03, 2016 2:27:56 PM com.sun.jersey.api.core.PackagesResourceConfig init

INFO: Scanning for root resource and provider classes in the packages:

  org.jivesoftware.openfire.plugin.servlet

Feb 03, 2016 2:27:56 PM com.sun.jersey.server.impl.application.WebApplicationImpl _initiate

INFO: Initiating Jersey application, version 'Jersey: 1.18 11/22/2013 03:05 AM'

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: Successfully started LibJitsi using as implementation: org.jitsi.impl.libjitsi.LibJitsiOSGiImpl

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.vendor=Oracle Corporation

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: org.jitsi.videobridge.MEDIA_RECORDING_TOKEN=secret

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: sun.management.compiler=HotSpot Client Compiler

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: exe4j.isInstall4j=true

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: org.jitsi.impl.neomedia.transform.srtp.SRTPCryptoContext.checkReplay=false

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: os.name=Windows 8.1

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: sun.boot.class.path=c:\program files (x86)\openfire\jre\lib\resources.jar;c:\program files (x86)\openfire\jre\lib\rt.jar;c:\program files (x86)\openfire\jre\lib\sunrsasign.jar;c:\program files (x86)\openfire\jre\lib\jsse.jar;c:\program files (x86)\openfire\jre\lib\jce.jar;c:\program files (x86)\openfire\jre\lib\charsets.jar;c:\program files (x86)\openfire\jre\lib\jfr.jar;c:\program files (x86)\openfire\jre\classes

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: install4j.launcherId=15

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: sun.desktop=windows

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.vm.specification.vendor=Oracle Corporation

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: install4j.appDir=C:\Program Files (x86)\Openfire\

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.runtime.version=1.8.0_66-b17

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: user.name=OurMedia

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: user.language=en

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: org.jitsi.impl.neomedia.transform.csrc.SsrcTransformEngine.dropMutedAudioSource InReverseTransform=true

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: sun.boot.library.path=c:\program files (x86)\openfire\jre\bin

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: net.java.sip.communicator.service.media.MIN_PORT_NUMBER=5000

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: mail.debug=false

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: org.jitsi.videobridge.MEDIA_RECORDING_PATH=C:\Program Files (x86)\Openfire\plugins\ofmeet\recordings

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.version=1.8.0_66

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: user.timezone=Asia/Muscat

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: sun.arch.data.model=32

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.endorsed.dirs=c:\program files (x86)\openfire\jre\lib\endorsed

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: sun.cpu.isalist=pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: sun.jnu.encoding=Cp1252

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: file.encoding.pkg=sun.io

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: file.separator=\

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.specification.name=Java Platform API Specification

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.class.version=52.0

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: user.country=US

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: net.java.sip.communicator.service.media.DISABLE_VIDEO_SUPPORT=true

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.home=c:\program files (x86)\openfire\jre

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.vm.info=mixed mode

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: exe4j.processCommFile=C:\Users\OurMedia\AppData\Local\Temp\e4j_p4732.tmp

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: os.version=6.3

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: org.jitsi.videobridge.DISABLE_RETRANSMISSION_REQUESTS=true

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: mail.imap.host=rs19.websitehostserver.net

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: path.separator=;

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.vm.version=25.66-b17

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: mail.imap.socketFactory.class=org.jivesoftware.util.SimpleSSLSocketFactory

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: user.variant=

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: net.java.sip.communicator.CONFIGURATION_FILE_IS_READ_ONLY=true

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.awt.printerjob=sun.awt.windows.WPrinterJob

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: sun.io.unicode.encoding=UnicodeLittle

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: awt.toolkit=sun.awt.windows.WToolkit

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: mail.imap.connectiontimeout=10000

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: user.script=

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: org.jitsi.videobridge.NAT_HARVESTER_LOCAL_ADDRESS=192.168.1.111

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: org.jitsi.videobridge.ENABLE_MEDIA_RECORDING=false

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: openfireHome=C:\Program Files (x86)\Openfire\bin\../

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: user.home=C:\Users\OurMedia

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: exe4j.semaphoreName=Local\c:_program_files_(x86)_openfire_bin_openfired.exe

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.specification.vendor=Oracle Corporation

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.library.path=C:\Program Files (x86)\Openfire\plugins\ofmeet\lib\native;C:\ProgramData\Oracle\Java\javapath;c: \Program Files (x86)\Intel\iCLS Client\;c:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\Syst em32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x86;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x64;C:\Program Files (x86)\MySQL\MySQL Fabric 1.5 & MySQL Utilities 1.5\;C:\Program Files (x86)\MySQL\MySQL Fabric 1.5 & MySQL Utilities 1.5\Doctrine extensions for PHP\;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;c:\program files (x86)\openfire\jre\bin;c:\program files (x86)\openfire\jre\bin

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.vendor.url=http://java.oracle.com/

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: exe4j.consoleCodepage=cp437

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: org.jitsi.service.audionotifier.AudioNotifierService=org.jitsi.impl.neomedia.no tify.AudioNotifierServiceImpl

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.vm.vendor=Oracle Corporation

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.runtime.name=Java(TM) SE Runtime Environment

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: sun.java.command=C:\Program Files (x86)\Openfire\bin\openfired.exe

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.class.path=C:\Program Files (x86)\Openfire\.install4j\i4jruntime.jar;C:\Program Files (x86)\Openfire\bin\..\lib\bcpg-jdk15on.jar;C:\Program Files (x86)\Openfire\bin\..\lib\bcpkix-jdk15on.jar;C:\Program Files (x86)\Openfire\bin\..\lib\bcprov-jdk15on.jar;C:\Program Files (x86)\Openfire\bin\..\lib\hsqldb.jar;C:\Program Files (x86)\Openfire\bin\..\lib\javax.websocket-api.jar;C:\Program Files (x86)\Openfire\bin\..\lib\jtds.jar;C:\Program Files (x86)\Openfire\bin\..\lib\mail.jar;C:\Program Files (x86)\Openfire\bin\..\lib\mysql.jar;C:\Program Files (x86)\Openfire\bin\..\lib\npn-boot.jar;C:\Program Files (x86)\Openfire\bin\..\lib\openfire.jar;C:\Program Files (x86)\Openfire\bin\..\lib\postgres.jar;C:\Program Files (x86)\Openfire\bin\..\lib\slf4j-log4j12.jar;C:\Program Files (x86)\Openfire\bin\..\lib\startup.jar;

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: org.apache.commons.logging.LogFactory=org.jivesoftware.util.log.util.CommonsLog Factory

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: exe4j.tempDir=

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.vm.specification.name=Java Virtual Machine Specification

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: net.java.sip.communicator.service.media.DISABLE_AUDIO_SUPPORT=true

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: net.java.sip.communicator.SC_HOME_DIR_LOCATION=C:\Program Files (x86)\Openfire\plugins\ofmeet

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: exe4j.moduleName=C:\Program Files (x86)\Openfire\bin\openfired.exe

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.vm.specification.version=1.8

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: sun.cpu.endian=little

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: sun.os.patch.level=

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.awt.headless=true

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.io.tmpdir=C:\Users\OurMedia\AppData\Local\Temp\

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: net.java.sip.communicator.service.media.MAX_PORT_NUMBER=6000

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.vendor.url.bug=http://bugreport.sun.com/bugreport/

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: org.jitsi.service.neomedia.AudioMediaStream.DISABLE_DTMF_HANDLING=true

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: os.arch=x86

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: exe4j.launchName=C:\Program Files (x86)\Openfire\bin\openfired.exe

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.ext.dirs=c:\program files (x86)\openfire\jre\lib\ext;C:\WINDOWS\Sun\Java\lib\ext

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: mail.imap.port=587

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: user.dir=C:\Program Files (x86)\Openfire\bin

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: exe4j.unextractedPosition=0

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: line.separator=

 

 

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.vm.name=Java HotSpot(TM) Client VM

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: mail.imap.socketFactory.fallback=true

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: org.jitsi.videobridge.NAT_HARVESTER_PUBLIC_ADDRESS=192.168.1.111

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: org.ice4j.ice.harvest.DISABLE_LINK_LOCAL_ADDRESSES=true

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: net.java.sip.communicator.impl.neomedia.video.maxbandwidth=2147483647

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: file.encoding=Cp1252

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: install4j.swt=false

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: install4j.exeDir=C:\Program Files (x86)\Openfire\bin\

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: java.specification.version=1.8

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: net.java.sip.communicator.SC_HOME_DIR_NAME=.

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: Normal classloader

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: failed to find jitsi-defaults.properties with class loader, will continue without it.

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: Normal classloader

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: failed to find jitsi-default-overrides.properties with class loader, will continue without it.

Feb 03, 2016 2:27:57 PM net.java.sip.communicator.util.Logger info

INFO: Resource manager STARTED

Feb 03, 2016 2:27:57 PM net.java.sip.communicator.util.Logger info

INFO: Resource manager REGISTERED

Feb 03, 2016 2:27:57 PM net.java.sip.communicator.util.Logger info

INFO: Network Address Manager         ...[  STARTED ]

Feb 03, 2016 2:27:57 PM net.java.sip.communicator.util.Logger info

INFO: Network Address Manager Service ...[REGISTERED]

Feb 03, 2016 2:27:57 PM net.java.sip.communicator.util.Logger info

INFO: Packet Logging Service ...[REGISTERED]

Feb 03, 2016 2:27:57 PM org.jitsi.util.Logger info

INFO: Metric services enabled: 0

Feb 03, 2016 2:27:58 PM net.java.sip.communicator.util.Logger info

INFO: Jitsi Videobridge Version: JVB 0.1.build.SVN

DEBUG: JavaMail version 1.4.1

DEBUG: not loading file: c:\program files (x86)\openfire\jre\lib\javamail.providers

DEBUG: java.io.FileNotFoundException: c:\program files (x86)\openfire\jre\lib\javamail.providers (The system cannot find the file specified)

DEBUG: !anyLoaded

DEBUG: not loading resource: /META-INF/javamail.providers

DEBUG: not loading resource: /META-INF/javamail.default.providers

DEBUG: failed to load any providers, using defaults

DEBUG: Tables of loaded providers

DEBUG: Providers Listed By Class Name: {com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun .mail.smtp.SMTPSSLTransport,Sun Microsystems, Inc.,1.4.1], com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail .smtp.SMTPTransport,Sun Microsystems, Inc.,1.4.1], com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.ima p.IMAPSSLStore,Sun Microsystems, Inc.,1.4.1], com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop 3.POP3SSLStore,Sun Microsystems, Inc.,1.4.1], com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IM APStore,Sun Microsystems, Inc.,1.4.1], com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.PO P3Store,Sun Microsystems, Inc.,1.4.1]}

DEBUG: Providers Listed By Protocol: {imaps=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Sun Microsystems, Inc.,1.4.1], imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc.,1.4.1], smtps=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Su n Microsystems, Inc.,1.4.1], pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun Microsystems, Inc.,1.4.1], smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc.,1.4.1], pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Sun Microsystems, Inc.,1.4.1]}

DEBUG: not loading resource: /META-INF/javamail.default.address.map

DEBUG: !anyLoaded

DEBUG: not loading resource: /META-INF/javamail.address.map

DEBUG: not loading file: c:\program files (x86)\openfire\jre\lib\javamail.address.map

DEBUG: java.io.FileNotFoundException: c:\program files (x86)\openfire\jre\lib\javamail.address.map (The system cannot find the file specified)

DEBUG: failed to load address map, using defaults

DEBUG: getProvider() returning javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Sun Microsystems, Inc.,1.4.1]

DEBUG: mail.imap.fetchsize: 16384

VoiceBridge logs C:\Program Files (x86)\Openfire\plugins\rayo\..\..\logs\

Feb 3 14:27:58.917   There are no VoIP gateways.  You cannot make calls to the phone system.

Feb 3 14:27:59.121  

Feb 3 14:27:59.121   Bridge private address:   127.0.0.1

Feb 3 14:27:59.152   Bridge public address:    127.0.0.1

Feb 3 14:27:59.152   Bridge public SIP port:   5060

Feb 3 14:27:59.152   Default SIP Proxy:        null

Feb 3 14:27:59.152  

Loading lexicon: jar:file:/C:/Program%20Files%20(x86)/Openfire/plugins/rayo/lib/cmulex.jar!/com/ sun/speech/freetts/en/us/cmulex_compiled.bin

* OK [CAPABILITY IMAP4rev1 LITERAL+ SASL-IR LOGIN-REFERRALS ID ENABLE IDLE NAMESPACE AUTH=PLAIN AUTH=LOGIN] Dovecot ready.

IMAP DEBUG: AUTH: PLAIN

IMAP DEBUG: AUTH: LOGIN

A0 CAPABILITY

Starting Hazelcast Clustering Plugin

* CAPABILITY IMAP4rev1 LITERAL+ SASL-IR LOGIN-REFERRALS ID ENABLE IDLE NAMESPACE AUTH=PLAIN AUTH=LOGIN

A0 OK Pre-login capabilities listed, post-login capabilities have more.

IMAP DEBUG: AUTH: PLAIN

IMAP DEBUG: AUTH: LOGIN

DEBUG: protocolConnect login, host=rs19.websitehostserver.net, user=chatserver@ourmedia.ae, password=<non-null>

A1 AUTHENTICATE PLAIN

Feb 03, 2016 2:27:59 PM com.hazelcast.config.ClasspathXmlConfig

INFO: Configuring Hazelcast from 'hazelcast-cache-config.xml'.

Feb 03, 2016 2:28:03 PM org.jitsi.util.Logger info

INFO: LibJitsi already started, using as implementation: org.jitsi.impl.libjitsi.LibJitsiOSGiImpl

Feb 03, 2016 2:28:03 PM net.java.sip.communicator.util.Logger info

INFO: Network Address Manager         ...[  STARTED ]

Feb 03, 2016 2:28:03 PM net.java.sip.communicator.util.Logger info

INFO: Network Address Manager Service ...[REGISTERED]

Feb 03, 2016 2:28:03 PM net.java.sip.communicator.util.Logger info

INFO: Currently Active eth1:[/192.168.1.111]

Feb 03, 2016 2:28:03 PM net.java.sip.communicator.util.Logger info

INFO: Currently Active net1:[/2001:0:5ef5:79fd:14ca:fa3:3f57:fe90]

+

Y2hhdHNlcnZlckBvdXJtZWRpYS5hZQBjaGF0c2VydmVyQG91cm1lZGlhLmFlAG91cm1lZGlhMjAxMw==

Feb 03, 2016 2:28:04 PM org.jitsi.util.Logger info

INFO: HAVE Discovered items for: ourmedia

Feb 03, 2016 2:28:04 PM org.jitsi.util.Logger info

INFO: <item jid="yahoo.ourmedia" name="Yahoo! Transport"/>

Feb 03, 2016 2:28:04 PM org.jitsi.util.Logger info

INFO: <item jid="ofmeet-jitsi-videobridge.ourmedia" name="JitsiVideobridge"/>

Feb 03, 2016 2:28:04 PM org.jitsi.util.Logger info

INFO: <item jid="logger.ourmedia" name="Remote Logger"/>

Feb 03, 2016 2:28:04 PM org.jitsi.util.Logger info

INFO: <item jid="sipark.ourmedia" name="SIP Controller"/>

Feb 03, 2016 2:28:04 PM org.jitsi.util.Logger info

INFO: <item jid="icq.ourmedia" name="ICQ Transport"/>

Feb 03, 2016 2:28:04 PM org.jitsi.util.Logger info

INFO: <item jid="rayo.ourmedia" name="rayo"/>

Feb 03, 2016 2:28:04 PM org.jitsi.util.Logger info

INFO: <item jid="ofmeet-call-control.ourmedia" name="Call control"/>

Feb 03, 2016 2:28:04 PM org.jitsi.util.Logger info

INFO: <item jid="updater.ourmedia" name="Spark Updater"/>

Feb 03, 2016 2:28:04 PM org.jitsi.util.Logger info

INFO: <item jid="ofmeet-focus.ourmedia" name="Jitsi Meet Focus"/>

Feb 03, 2016 2:28:04 PM org.jitsi.util.Logger info

INFO: <item jid="proxy.ourmedia" name="Socks 5 Bytestreams Proxy"/>

Feb 03, 2016 2:28:04 PM org.jitsi.util.Logger info

INFO: <item jid="rtpbridge.ourmedia" name="Media Proxy Service"/>

Feb 03, 2016 2:28:04 PM org.jitsi.util.Logger info

INFO: <item jid="workgroup.ourmedia" name="Fastpath"/>

Feb 03, 2016 2:28:04 PM org.jitsi.util.Logger info

INFO: <item jid="manager.ourmedia" name="Client Control Manager"/>

Feb 03, 2016 2:28:04 PM org.jitsi.util.Logger info

INFO: <item jid="broadcast.ourmedia" name="Broadcast service"/>

Feb 03, 2016 2:28:04 PM org.jitsi.util.Logger info

INFO: <item jid="conference.ourmedia" name="Public Chatrooms"/>

Feb 03, 2016 2:28:04 PM org.jitsi.util.Logger info

INFO: <item jid="pubsub.ourmedia" name="Publish-Subscribe service"/>

Feb 03, 2016 2:28:04 PM org.jitsi.util.Logger info

INFO: <item jid="gtalk.ourmedia" name="Google Talk Transport"/>

Feb 03, 2016 2:28:04 PM org.jitsi.util.Logger info

INFO: <item jid="search.ourmedia" name="User Search"/>

Feb 03, 2016 2:28:04 PM org.jitsi.util.Logger info

INFO: <item jid="relay.ourmedia" name="JingleRelayNode"/>

Feb 03, 2016 2:28:04 PM org.jitsi.util.Logger info

INFO: <item jid="facebook.ourmedia" name="Facebook Transport"/>

Feb 03, 2016 2:28:05 PM net.java.sip.communicator.util.Logger info

INFO: Discovered videobridge: ofmeet-jitsi-videobridge.ourmedia

Feb 03, 2016 2:28:05 PM net.java.sip.communicator.util.Logger warn

WARNING: No pub-sub node mapped for ofmeet-jitsi-videobridge.ourmedia statistics will not be tracked for this instance.

Feb 03, 2016 2:28:05 PM net.java.sip.communicator.util.Logger info

INFO: Discovered SIP gateway: ofmeet-call-control.ourmedia

A1 NO [AUTHENTICATIONFAILED] Authentication failed.

Feb 03, 2016 2:28:06 PM org.jitsi.util.Logger info

INFO: XMPP provider Jabber:focus@ourmedia/focus7886667128238@192.168.1.111 connected (JID: focus)

Fedora admin console uses tcp/9090

$
0
0

Just a heads up...  It looks like there is a well known port conflict.

 

I found out the hard way that Fedora Admin Console uses tcp port 9090.   This keeps one from getting to the OF admin console.

 

I used these systemctl commands to disable

 

$ sudo systemctl stop cockpit.socket

$ sudo systemctl disable cockpit.socket

 

I don't know what the implications are yet of turning this off.

 

Source for the commands used.

My custom database

$
0
0

Hi all,

i've created a database for my chat application, which has , for example, more fields on the "user" table, how can i implement it in openfire? (i've already connected openfire to a mysql external database on my server)

Thanks.

Openfire-AD Clustering. Where to start?

$
0
0

Hi Everyone

 

What I want to accomplish is to setup a clustering of two Centos OF servers from different subnets. They are both AD integrated. I have read about Hazelcast but I couldn't find any documentation on setting up clustering that are integrated to AD.

 

Any advise on where I can start or what I need to do first?

 

Thanks in advance.

How to make my all chat communication encrypted

$
0
0

Hello,

 

I have an open fire server configured recently. But while doing one nessus scan against the server, it is showing with a medium vulnerability of "XMPP Cleartext authentication". Can anyone please help on resolving this.

 

Is this related only with Security settings fields in admin console.

 

Thanks,

San.


openfire 4.0.1 after install

$
0
0

i can't login to admin area.

Error:

Login failed: make sure your username and password are correct and that you're an admin or moderator.

i use embeded database.

and in error.log:

2016.02.04 16:51:48 org.jivesoftware.openfire.XMPPServer - Database could not be accessed

java.sql.SQLException: Access is denied: Session is closed

2016.02.04 16:51:46 org.jivesoftware.util.JiveProperties - Access is denied: Session is closed

java.sql.SQLException: Access is denied: Session is closed

 

help plz

Presence is not getting updated if wifi is not working (user is not getting offline) with latest version of openfire 4.0.1

$
0
0

HI,

User Presence is not getting updated, if wifi is not working.

 

1. first i am connecting to server from my android applicaiton.(status is online on server)

2. i switched off my WIFI.but my presence is not getting updated to offline in Server

3. I changed xmpp.client.idle.ping to true ,xmpp.server.session.idle=1,xmpp.client.idle=1000,but that is also not working,

 

please help.

Thanks in advance

 

Openfire Cluster 101? Fresh install just doesn't work for me.

$
0
0

I can't get Openfire clustering to work, even with just one machine.  I started with real servers, but moved to VirtualBox so that anyone can reproduce the same steps (shown below), or people can clue me into what I might be doing wrong.

 

I'm using:

 

```

Openfire 4.0.1

Hazelcast 2.2.0

Oracle JDK 1.8

Fedora 23 Server

```

 

I installed Fedora 23 [1] Server systems running as VirtualBox guests to test clustering, Openfire1 and Openfire2.  Each has a public static IP interface (eth0) and a private 192.168.0.x/24 (eth1) "host only" network.  IP Multicast available between both systems using either eth0 or eth1 interfaces.  (If this ever works, the goal is to use eth1 for Hazelcast.)

 

Steps:

 

```

Installed Fedora 23 Server

Turned off all firewalls (firewalld, iptables)

Installed Oracle JDK 1.8

Installed MySql Server

Created openfire database

Installed openfire 4.0.2

Populated openfire database (e.g. source /opt/openfire/resources/database/openfire_mysql.sql;)

Ran openfire setup via admin console

Openfire running and talking to database

```

 

Things work fine... shutdown, reboot, retest w/out clustering.

 

Install Hazelcast plugin (clustering is disabled)

 

Enable Clustering.

 

Admin console page never returns from clicking enable.    I went for a beer (er...  two) point being I waited longer than 30 seconds.

 

Is there any low hanging fruit in the steps above?

 

I've tried turning multicast off in Hazelcast, using TCP instead.  I get the same result.  I can't even get clustering enabled with one node.

 

 

In case a second node is needed to cluster to, I set one up.  I shutdown openfire on Openfire1 VM, leaving the system running (I need the MySql DB.)

 

Using the same steps above, I install a second Fedora Sever (Openfire2), install openfire etc. as above but using MySql DB on Openfire1 VM.

 

Openfire2 works  w/out clustering, e.g. I can use the MySql DB on the other machine.

 

When I enable Hazelcast plugin, I get the same problem as above.

 

I shutdown then restart BOTH machines with clustering enabled (via edit to openfire.xml <clustering>true</clustering>)  The goal is to test with "something to talk to".

 

No luck.  Using tcpdump, I see a LOT of chatter between Openfire1 and Openfire2 on the eth1 interface.  They are talking to each other.

 

On both systems, the admin console is unresponsive (sometimes I get an exception I've reported in other posts.)

 

Since these are just test VM's running on my Macbook, I can try a few things if anyone has an idea.

 

[1] I've done the whole thing all over again using Ubuntu 14.04.03 LTS, same result.

An exception occurred while creating outgoing session to remote server

$
0
0

22.png

Log:

 

at org.jivesoftware.openfire.server.ServerDialback.createOutgoingSession(ServerDia lback.java:253)

at org.jivesoftware.openfire.session.LocalOutgoingServerSession.createOutgoingSess ion(LocalOutgoingServerSession.java:373)

at org.jivesoftware.openfire.session.LocalOutgoingServerSession.authenticateDomain (LocalOutgoingServerSession.java:210)

at org.jivesoftware.openfire.server.OutgoingSessionPromise$PacketsProcessor.sendPa cket(OutgoingSessionPromise.java:266)

at org.jivesoftware.openfire.server.OutgoingSessionPromise$PacketsProcessor.run(Ou tgoingSessionPromise.java:243)

at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)

at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)

at java.lang.Thread.run(Thread.java:745)

2016.02.05 07:33:14 org.jivesoftware.openfire.server.ServerDialback[Acting as Originating Server: Create Outgoing Session from: shangryla.net to RS at: 0nl1ne.at (port: 5269)] - An exception occurred while creating outgoing session to remote server:

org.xmlpull.v1.XmlPullParserException: could not determine namespace bound to element prefix stream (position: START_DOCUMENT seen <stream:error>... @1:14)

at org.xmlpull.mxp1.MXParser.parseStartTag(MXParser.java:1816)

at org.xmlpull.mxp1.MXParser.parseProlog(MXParser.java:1479)

at org.jivesoftware.openfire.net.MXParser.nextImpl(MXParser.java:341)

at org.xmlpull.mxp1.MXParser.next(MXParser.java:1093)

at org.jivesoftware.openfire.server.ServerDialback.createOutgoingSession(ServerDia lback.java:253)

at org.jivesoftware.openfire.session.LocalOutgoingServerSession.createOutgoingSess ion(LocalOutgoingServerSession.java:373)

at org.jivesoftware.openfire.session.LocalOutgoingServerSession.authenticateDomain (LocalOutgoingServerSession.java:210)

at org.jivesoftware.openfire.server.OutgoingSessionPromise$PacketsProcessor.sendPa cket(OutgoingSessionPromise.java:266)

at org.jivesoftware.openfire.server.OutgoingSessionPromise$PacketsProcessor.run(Ou tgoingSessionPromise.java:243)

at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)

at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)

at java.lang.Thread.run(Thread.java:745)

2016.02.05 07:35:43 org.jivesoftware.openfire.server.ServerDialback[Acting as Originating Server: Create Outgoing Session from: shangryla.net to RS at: 0nl1ne.at (port: 5269)] - An exception occurred while creating outgoing session to remote server:

org.xmlpull.v1.XmlPullParserException: could not determine namespace bound to element prefix stream (position: START_DOCUMENT seen <stream:error>... @1:14)

at org.xmlpull.mxp1.MXParser.parseStartTag(MXParser.java:1816)

at org.xmlpull.mxp1.MXParser.parseProlog(MXParser.java:1479)

at org.jivesoftware.openfire.net.MXParser.nextImpl(MXParser.java:341)

at org.xmlpull.mxp1.MXParser.next(MXParser.java:1093)

at org.jivesoftware.openfire.server.ServerDialback.createOutgoingSession(ServerDia lback.java:253)

at org.jivesoftware.openfire.session.LocalOutgoingServerSession.createOutgoingSess ion(LocalOutgoingServerSession.java:373)

at org.jivesoftware.openfire.session.LocalOutgoingServerSession.authenticateDomain (LocalOutgoingServerSession.java:210)

at org.jivesoftware.openfire.server.OutgoingSessionPromise$PacketsProcessor.sendPa cket(OutgoingSessionPromise.java:266)

at org.jivesoftware.openfire.server.OutgoingSessionPromise$PacketsProcessor.run(Ou tgoingSessionPromise.java:243)

at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)

at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)

at java.lang.Thread.run(Thread.java:745)

2016.02.05 07:38:06 org.jivesoftware.openfire.server.ServerDialback[Acting as Originating Server: Create Outgoing Session from: shangryla.net to RS at: 0nl1ne.at (port: 5269)] - An exception occurred while creating outgoing session to remote server:

org.xmlpull.v1.XmlPullParserException: could not determine namespace bound to element prefix stream (position: START_DOCUMENT seen <stream:error>... @1:14)

at org.xmlpull.mxp1.MXParser.parseStartTag(MXParser.java:1816)

at org.xmlpull.mxp1.MXParser.parseProlog(MXParser.java:1479)

at org.jivesoftware.openfire.net.MXParser.nextImpl(MXParser.java:341)

at org.xmlpull.mxp1.MXParser.next(MXParser.java:1093)

at org.jivesoftware.openfire.server.ServerDialback.createOutgoingSession(ServerDia lback.java:253)

at org.jivesoftware.openfire.session.LocalOutgoingServerSession.createOutgoingSess ion(LocalOutgoingServerSession.java:373)

at org.jivesoftware.openfire.session.LocalOutgoingServerSession.authenticateDomain (LocalOutgoingServerSession.java:210)

at org.jivesoftware.openfire.server.OutgoingSessionPromise$PacketsProcessor.sendPa cket(OutgoingSessionPromise.java:266)

at org.jivesoftware.openfire.server.OutgoingSessionPromise$PacketsProcessor.run(Ou tgoingSessionPromise.java:243)

at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)

at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)

at java.lang.Thread.run(Thread.java:745)

 

33.png

STARTTLS policy "Required" - not working(S2S)

$
0
0

Now i switch STARTTLS policy in Required mode, but there still presented not encrypted connections:

 

44.png

55.png

66.png

 

Same option for c2s work correct.

Hazelcast plugin 2.0

$
0
0

Hi Experts

 

Can somebody share the download link for hazlecast 2.0?

Openfire server stopped responding

$
0
0

We are running open fire in a windows server. Suddenly it stopped responding and the error log has the following error.

 

org.jivesoftware.openfire.nio.ConnectionHandler - Closing connection due to error while processing message: <auth mechanism="PLAIN" xmlns="urn:ietf:params:xml:ns:xmpp-sasl">AAA=</auth>

java.util.NoSuchElementException

  at java.util.StringTokenizer.nextToken(Unknown Source)

  at org.jivesoftware.openfire.sasl.SaslServerPlainImpl.evaluateResponse(SaslServerP lainImpl.java:114)

  at org.jivesoftware.openfire.net.SASLAuthentication.handle(SASLAuthentication.java :274)

  at org.jivesoftware.openfire.net.StanzaHandler.process(StanzaHandler.java:179)

  at org.jivesoftware.openfire.nio.ConnectionHandler.messageReceived(ConnectionHandl er.java:181)

  at org.apache.mina.common.support.AbstractIoFilterChain$TailFilter.messageReceived (AbstractIoFilterChain.java:570)

  at org.apache.mina.common.support.AbstractIoFilterChain.callNextMessageReceived(Ab stractIoFilterChain.java:299)

  at org.apache.mina.common.support.AbstractIoFilterChain.access$1100(AbstractIoFilt erChain.java:53)

  at org.apache.mina.common.support.AbstractIoFilterChain$EntryImpl$1.messageReceive d(AbstractIoFilterChain.java:648)

  at org.apache.mina.common.IoFilterAdapter.messageReceived(IoFilterAdapter.java:80)

  at org.apache.mina.common.support.AbstractIoFilterChain.callNextMessageReceived(Ab stractIoFilterChain.java:299)

  at org.apache.mina.common.support.AbstractIoFilterChain.access$1100(AbstractIoFilt erChain.java:53)

  at org.apache.mina.common.support.AbstractIoFilterChain$EntryImpl$1.messageReceive d(AbstractIoFilterChain.java:648)

  at org.apache.mina.filter.codec.support.SimpleProtocolDecoderOutput.flush(SimplePr otocolDecoderOutput.java:58)

  at org.apache.mina.filter.codec.ProtocolCodecFilter.messageReceived(ProtocolCodecF ilter.java:185)

  at org.apache.mina.common.support.AbstractIoFilterChain.callNextMessageReceived(Ab stractIoFilterChain.java:299)

  at org.apache.mina.common.support.AbstractIoFilterChain.access$1100(AbstractIoFilt erChain.java:53)

  at org.apache.mina.common.support.AbstractIoFilterChain$EntryImpl$1.messageReceive d(AbstractIoFilterChain.java:648)

  at org.apache.mina.filter.executor.ExecutorFilter.processEvent(ExecutorFilter.java :239)

  at org.apache.mina.filter.executor.ExecutorFilter$ProcessEventsRunnable.run(Execut orFilter.java:283)

  at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)

  at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)

  at org.apache.mina.util.NamePreservingRunnable.run(NamePreservingRunnable.java:51)

  at java.lang.Thread.run(Unknown Source)

 

 

-------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- ------

There was one more file in the bin folder of open fire with name 'hs_err_pid1888.log' and the following content was found

 

#

# There is insufficient memory for the Java Runtime Environment to continue.

# Native memory allocation (malloc) failed to allocate 32756 bytes for ChunkPool::allocate

# Possible reasons:

#   The system is out of physical RAM or swap space

#   In 32 bit mode, the process size limit was hit

# Possible solutions:

#   Reduce memory load on the system

#   Increase physical memory or swap space

#   Check if swap backing store is full

#   Use 64 bit Java on a 64 bit OS

#   Decrease Java heap size (-Xmx/-Xms)

#   Decrease number of Java threads

#   Decrease Java thread stack sizes (-Xss)

#   Set larger code cache with -XX:ReservedCodeCacheSize=

# This output file may be truncated or incomplete.

#

#  Out of Memory Error (allocation.cpp:211), pid=1888, tid=3068

#

# JRE version: Java(TM) SE Runtime Environment (7.0_51-b13) (build 1.7.0_51-b13)

# Java VM: Java HotSpot(TM) Client VM (24.51-b03 mixed mode windows-x86 )

# Failed to write core dump.

#

 

 

---------------  T H R E A D  ---------------

 

 

Current thread (0x486bfc00):  VMThread [stack: 0x01ea0000,0x01ef0000] [id=3068]

 

 

Stack: [0x01ea0000,0x01ef0000],  sp=0x01eeeb74,  free space=314k

Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)

V  [jvm.dll+0x18e0f1]

V  [jvm.dll+0x1a39a5]

V  [jvm.dll+0x1a4b8b]

C  [MSVCR100.dll+0x5c556]

C  [MSVCR100.dll+0x5c600]

C  [kernel32.dll+0x1338a]

C  [ntdll.dll+0x39f72]

C  [ntdll.dll+0x39f45]

 

 

VM_Operation (0x5a14ef28): BulkRevokeBias, mode: safepoint, requested by thread 0x71863400

 

-------------------------------------------------------------------------------- --------------------------------------------------------------------------------

 

When this crash happened the server memory was at 30% and cpu usage was negligible and we have set max heap size as '-Xmx1024m' in openfire-service.vmoptions file and we are not specifying min heap size, not sure what has caused this, any help?

 

Thanks,

Pavan


Upgrade issues

How to make my all chat communication encrypted

$
0
0

Hello,

 

I have an open fire server configured recently. But while doing one nessus scan against the server, it is showing with a medium vulnerability of "XMPP Cleartext authentication". Can anyone please help on resolving this.

 

Is this related only with Security settings fields in admin console.

 

Thanks,

San.

Openfire-AD Clustering. Where to start?

$
0
0

Hi Everyone

 

What I want to accomplish is to setup a clustering of two Centos OF servers from different subnets. They are both AD integrated. I have read about Hazelcast but I couldn't find any documentation on setting up clustering that are integrated to AD.

 

Any advise on where I can start or what I need to do first?

 

Thanks in advance.

Warn Log

$
0
0

Hi,

 

Warn Log;

 

2016.02.09 10:26:03 org.jivesoftware.openfire.spi.LegacyConnectionAcceptor - Configuration allows for up to 16 threads, although implementation is limited to exactly one.

 

what does it mean? do i need to adjust?

 

Thank you.

Upgrade and lost SSO

$
0
0

Server:

 

Ubuntu 14.04 64-Bit

Openfire 3.9.3

Java 7u79 (IcedTea 2.5.6)

Database on SQL server.

 

We are in the process of moving from a VMWare environment to Hyper-V.   On Friday night I moved to Openfire server without any issues, and users used Spark on Saturday without issues.

 

This morning, I did a couple of updates to the server... openjdk-7-jre was included in the list, which I believe brought it to 7u95 or so.  I also upgraded Openfire to V4.0.1 right after.

 

Now, SSO is broken across the board. I have installed the *latest Spark build on my PC (2.7.5) and that has not helped. I can shut down The Hyper-V machine and Start the VMWare machine (still on 3.9.3) and SSO connects fine, so it has to be something on the Server side.

 

The error I am getting from Spark is:

[Code]

Feb 08, 2016 11:14:24 AM org.jivesoftware.spark.util.log.Log warning

WARNING: Exception in Login:

SASL authentication GSSAPI failed: not-authorized:

[/Code]

 

This server has been running for about a year and a half, and I have done various updates to it (Such as Openfire and Java updates) without breaking SSO in the past. Since this was a major Version change, is there anything else I need to do to get SSO working?

 

Thanks.

Viewing all 4778 articles
Browse latest View live