Im running a minecraft Server on a: Intel(R) Xeon(R) CPU E5-2620 v2 # 2.10GHz
I only play with up to 5 friends. I dont know how to fix the "lags" without to use a plugin which limit the mobs.
Here are the timings:
https://timings.aikar.co/?id=0fee38d9fe2f4351a7f651e59b8d313f
Try installing plugins such as ClearLagg, automated restarts and try making the server into onlinemode = true as it performs better.
If you know how to use Java, you can just limit the amount of mobs/entities spawning, then keep checking in a loop if the time == your time you set for example 3 am and run /restart as console.
Related
When I launch the Matlab tool in Windows machine, the tool launches but it is in "Initializing" phase for 4-5 minutes. The tool will not respond to any user commands.
The issue could be due to usage of remote license.
The usage of remote license or modifying anything in remote server is not possible right now.
After 4-5 minutes of initialization the Matlab tool works fine and I am ok with this behavior.
But the real problem is while launching Matlab tool using engine.c APIs such as OpenSingleUseFunction() or OpenEngineFunction(), the tool is launching and then goes to idle state.
Since Matlab is in "Initializing" phase for 4-5 minutes, the engine terminates the Matlab session after 2 minutes timeout and returns a MatlabEngine nullptr.
The 2 minutes timeout is not given by user to the engine APIs.
So is there any way to change this timeout value in engine APIs?
I was trying to activate my configuration on my local PC, but it failed. I tried:
Isolate 1 or 2 cores on my pc (Under SYSTEM > Real-Time and reboot the PC) and run the PLC tasks on those cores. When I do this I get the following error:
'TwinCAT System' (10000): Sending ams command >> Init4\RTime: Start Interrupt: Ticker started >> AdsWarning: 4118 (0x1016, RTIME: startup of isolated CPU fails!) << failed!
I then tried to run it on the normal windows dedicated CPUs (so none of the CPU’s were isolated). When I activated the configuration (and enabled Virtualization in the BIOS) I got the following error message:
Setting TwinCAT in Run Mode with KB4056894 is not possible
Uninstall KB4056894
or
Activate a solution using only isolated cores
I could not find KB4056894 installed on my PC. Any other solution?
I'm using TwinCAT 3 Build 4022.14 under Windows 10.
From Beckhoff support:
According to the error note, the Microsoft patch for spectre/meltdown
is installed on your PC. Normally, the TC3 should work with this patch
when using isolated cores…
However, since version TC3 Build 4022.16, this problem is solved.
I installed 4022.22 and everything worked.
I just want to share my experience with this error and how I solved it. Just in real-time menu set the cpu cores as 1 shared and 3 isolated cores. since my cpu has 4 core. Then set this value on target and then it will ask for reboot. after reboot it worked without this error and I was able to run the my code.
I'm having a problem with the tablet of Pepper. I am trying to display the index.html to the tablet using the show app box. I made only at the Application one show app box to the root diagram.
An error occurs when I run the application:
[ERROR] behavior.box: _getTabletService: 24 _Behavior__lastUploadedChoregrapheBehavior544669552: / init_8 / Show App_2:
Can not find service 'ALTabletService' in index
In addition, I also get the following awarning:
[WARN] behavior.box: onInput_onStart: 45 _Behavior__lastUploadedChoregrapheBehavior544669552: / init_8 / Show App_2:
Could not find tablet service, so can not set application: .lastUploadedChoregrapheBehavior
Development environment is as follows.
Model name: MacBook Pro
OS: El Capitan 10.11.5
Processor name: Intel Core i5 2.6 GHz
Memory: 16 GB
Graphics: Intel Iris 1536MB
Choreographe: 2.4.3.28
Pepper: 2.4.3.28
Answer please.
Make sure you are connected to the real Pepper and not to the virtual robot (as the virtual robot does not include the ALTabletService).
From experience (Nao) the error would suggest that the module is not available. I don't have the luxury to get my hands on a Pepper yet, but if your are not using a virtual robot, I would fire up a python session and try:
from naoqi import ALTabletService
and see if that goes through. If not, it would mean that there is problem with your SDK installation or env. path. If it goes through, it would be robot issue. Again you NEED TO make sure you are "connected" to a real Pepper, not a virtual robot in Choregraphe, in order for "Show App" to work.
As already pointed out ALTabletService is only available on a real robot (as it runs inside the tablet).
Also sadly this service is not the most stable service on the robot, and it might from time to time be missing (it will restart automatically). So you might need to protect your application against this (by waiting for it, ignoring errors, exiting, ... depending on your workflow).
I have more than 200 HP servers in my company branches and I want to automatically monitor server hardware errors. I can see all servers in my WAN.
I want to write a program to monitor HP servers remotely. My application must call an API or other functions remotely, and then get results from servers. After that I can send error signal to my administrators if needed, and my alarm system can read this information and etc. Is any API (or HP Proliant facilities) to get hardware errors and warnings remotely?
The Errors I want to monitor are:
Raid disk errors
Power Errors
CPU Fan Errors
I cant see more than 200 servers iLo GUI every day to monitor errors.
Yes, there is a way to monitor iLO via API. You should be able to integrate your application to the iLO RESTful API. there are some monitoring examples available on GitHub Python library.
you can get things like rest/v1/Managers/{item}/ActiveHealthSystem you might want to look into the complete data model.
Ana
HPE Employee
I'm working on a perl script that is used to check whether a number of services are running. To achieve this, we are using WMI to query remote Windows servers:
my $WMI_locator = Win32::OLE->new('WbemScripting.SWbemLocator');
$WMI_locator->{Security_}->{AuthentificationLevel} = 6;
my $computer = $WMI_locator->ConnectServer($server, 'root\cimv2', $adminuser, $adminpasswd);
my $services = $computer->ExecQuery('SELECT * FROM Win32_Service', 'WQL', $flag_return_immediately | $flag_forward_only);
This code snippet works perfectly when executed on my dev laptop. However, strange things happen when I try to run it from the production server: for some remote windows computers, I can only get about half the Services list.
I have looked into this, and found that the issue is only happening on servers with a lot of services (around 150), and for which there's a difference in the average ping (~60ms on local, ~215ms on production server). The issue seems to come from WMI rather than perl; I have tried to query the servers from the DOS command line, and I'm getting an error when trying to get the services, although querying the CPU works just fine :
E:\>wmic /NODE:server /USER:adminuser /PASSWORD:adminpasswd SERVICE GET Caption, State
Node - server
ERROR:
Code = 0x800706be
Description = The remote procedure call failed.
Facility = Win32
E:\>wmic /NODE:server /USER:adminuser /PASSWORD:adminpasswd CPU GET Name, Status
Name Status
Intel(R) Xeon(R) CPU X5650 # 2.67GHz OK
Intel(R) Xeon(R) CPU X5650 # 2.67GHz OK
Intel(R) Xeon(R) CPU X5650 # 2.67GHz OK
Intel(R) Xeon(R) CPU X5650 # 2.67GHz OK
Given that, I'm guessing the issue is network related, but we're now delving in a country I'm not familiar with. Is there some parameter I have missed and/or something wrong with the way I'm doing things?
Thanks for your answers!
This error is almost always (although not exclusively) caused by multiple instances of different versions of SQL server. To narrow down the problem try WMI Diagnostic Utility, it's designed to help with this type of problem.