Can the SL* services run under a domain account?
21st March 2023
Hi, Currently, this is not supported. We do have a project on our backlog to map out which services can be moved away from running as Local System in the …
Answer
21st March 2023
Hi, Currently, this is not supported. We do have a project on our backlog to map out which services can be moved away from running as Local System in the …
21st March 2023
Thank you both for the suggestions! BR Bruno Sousa
21st March 2023
Hi Jeroen, Jens answered the first question. But regarding the second issue, GetFieldValue is an extension method which is located in the Skyline.DataMiner.Net.Sections namespace, make sure you include it. GetListFieldValue …
21st March 2023
Hi Jeroen, Your first filter returns null because you’re using the section definition GUID (variable multiviewerSectionDefinition) in a DOM definition exposer. I guess that you’ll have a better result if …
21st March 2023
Hi Jason, I performed a quick test and I was able to create a SNMPv3 simulation. Tested using the Skyline Simulator Tool (v2.0.0.2) Do you see any error when executing …
21st March 2023
Hi Gerwin, Below example will get you started var instances = domHelper.DomInstances.Read(DomInstanceExposers.Id.Equal(IdOfInstanceToCopy)); domHelper.StitchDomInstances(instances); var instance = instances.First(); instance.ID = new DomInstanceId(Guid.NewGuid()); domHelper.DomInstances.Create(instance);
21st March 2023
Hi Thomas, As an update to this, I would like to inform you that as of now IDP is available for download on our DataMiner Software downloads page As of …
21st March 2023
This won’t be easy because SRT (Secure Reliable Transport) sends data over UDP, which web browsers for security reasons don’t support. Web apps can only send/receive data over HTTP(S). So …
20th March 2023
Hi Arturo To install Elasticsearch locally you could use the Standalone Elasticsearch Cluster Installer. As mentioned in the section ‘Configuration’, you can use the batch run_localhost_configuration.bat. Once the elasticsearch service …
20th March 2023
Hi Jeff, DataMiner will never write to the license file dataminer.lic. The software will only read out the file. This means that the MD5 checksum and last modified timestamp will …
20th March 2023
Hi, We have tested and validated Azure Virtual Desktop, and that worked fine. We were not able to find any issue or delay. The performance depends on the available resources …
20th March 2023
Based on testing, I believe 9 ports are open on the client side in the attempt to establish the communication for Eventing – sadly, none of them is working for …
20th March 2023
Hi Alberto, When Cube gets stuck with “application not responding”, it can be caused by either a blocking call or deadlock (resulting in 0% CPU usage of the main thread), …