Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I am facing a problem with the LEI windows Service.
Lotus notes Domino Server is the system component
LEI - Service
Both are windos service. LEI is dependant on lotus domino server.
Past few days i am experiencing a weird problem, LEI service was not running, when i started it it makes the lotusnotes domino server to crash.
I experienced several LEI issues in the past which caused domino crashes.
A few suggestions:
- does the server crash on a specific activity? What kind of activity? Can the databases this activity uses be accessed?
- Check the LEI Log (leilog.nsf) when this is corrupt, create a new one.
- Check your LEI Activities. All activities that were running or scheduled to run when the server crashed should be reset using the "Reset Activity" action (Menue actions - activity administration - Reset activity).
- Logging: Do you use heavy logging? There is an option "Buffer log". I had issues with this when there is very nmuch information to be logged (it causes and OutOfMemory, because the log is buffered and not permanently written to the log document)
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I'm testing the iot-core-azure-dm-client. I've developed a sample UWP application and incorporated the dm client library code to it. I've deployed the uwp app to the pi (Running on Windows IoT Core), added the SystemConfigurator.exe to the system32 folder and started the service, as stated here.
I managed to get the remote device management working with the Device Controller Application provided in the codebase.
My question is, every time I start the pi, I have to manually run the service SystemConfigurator.exe for the remote device management to work. Is there a way to configure this service to run at startup?
You can create a task to run a batch file when system startup by using following command.
schtasks /Create /SC ONSTART /TN startSystemConfigurator /TR "c:\Projects\MyApp\Startup.bat" /RU SYSTEM
and the batch file contains the command to start the service net start SystemConfigurator.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm using Google Cloud Messaging and have been working on both the application server side (the server that sends push messages) and the Android side (the smartphone app that receives push messages).
Google used to maintain documentation with some Java code for the application server at this link: http://developer.android.com/google/gcm/server.html
However, that link is now dead. It points to https://developers.google.com/cloud-messaging/ now and does not have any information on implementing the application server, in particular in Java.
Where is the application server documentation now, and where can I find the sample code for it?
Of most importance, I need to know what firewall ports to open on the application server side to connect to Google's servers. There are related StackOverflow messages on GCM ports, but again, they all point to URLs that are now dead.
UPDATE 6/12:
I found cached copies of that webpage using the Wayback Machine: http://web.archive.org/web/*/http://developer.android.com/google/gcm/server.html
The new server documentation is here: https://developers.google.com/cloud-messaging/http
The old Java server code has been removed, but there is similar and more up to date code in the GCM demo app that is in the git repo now, for example: https://github.com/google/gcm/blob/master/gcm-demo-app/src/main/java/com/google/android/gcm/demo/logic/GcmServerSideSender.java
You should be able to base you server code of this, or extract it into your server.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
We are trying to do a performance testing for a XMPP-based mobile chat application using Jmeter and Blazemeter.
As we are new to XMPP web-services.
Can anyone brief us how to use Jmeter or Blazemeter for XMPP and how to record the scripts using XMPP plugin?
Why not to try use tsung instead?
originally created for load-testing Jabber/XMPP servers although supports a lot of other protocols at the moment;
has better performance on the same load-generation servers amount than Jmeter: you will get instantly higher load on the same amount of hardware used;
ready for distributed load-generation.
Benchmark Approach: Jabber/XMPP
Load testing Ejabberd XMPP Server with Tsung
Load testing Tigase XMPP Server with Tsung
Introduction to Load Testing with Tsung
Tsung questions on SO
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I have noticed that SQL Agent does not start automatically after a reboot/shutdown on a few of our servers (SQL server starts up fine). The service is set to automatically start in windows. When we start SQL agent manually, it starts fine.
Add your windows level user in following path:
Click on Start - Run - Secpol.msc
Go to: Local Policies - User right assignments
Ensure the user account your running the SQL Agent Service under has the following assignments:
Act as a part of the Operating system
bypass Traverse checking
Lock pages in memory
Log on as a service
Log on a batch job
Replace process level token
If not, please add them and try restarting your system. Your SQL Server should be now be automatically starting as a service.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
This is my setup:
Around 60 pc's running an air client application, connected to (w)lan
1 pc that acts as a server, also connected to (w)lan
Scenario:
Whenever a change is made on the server (database and/or file change) this change needs to be synced to all air clients. (The server contacts all connected air clients one by one, to initiate the sync process)
Which platform?
The server application should be cross platform and easily installable, so my client can install the server app without any guidance (using install wizard preferably).
What comes to my mind is using a Java application for the server because I don't think an air application is suitable in this situation..(real threading, lack of dbms drivers, etc.).
What platform/language would be most suitable to communicate and exchange data with connected air clients in a local network?
This is my priority list: Cross-platform > easy install > well documented/big community > implemented quickly
Btw: initial sync would take about 0,5 GB to transfer, and an update afterwards about 10 MB.
Air and Java(backend code)
Cross-platform Yes
easy install Yes
well documented/big community Yes
implemented quickly Yes