Mar 23, 2022
04:07 AM
Thanks for this article, this is super useful and opens the door to performing minor fixes and customizations for Cloud customers!
Nicolas
... View more
Apr 08, 2021
06:02 AM
1 Kudo
Hi @AnttiMustonen Yes, it works splitting the policies and divide ARN's. However we have not tested the limits how how many accounts can be inventoried in a session token. Our cloud team do not want everyone to run the getinstances because it can empty the buckets, so they are preparing a custom API for us to fetch the instance data from instead that are continuously updated.
... View more
Dec 07, 2020
09:16 AM
3 Kudos
Hi all, I'm using the NTFS junction successfully for few years already on all FNMS parts (Batch. Inventory, Analytics, Web, Beacons) in production. Before installation of the application: create "d:\ProgramData\Flexera Software" run command: mklink /J "c:\ProgramData\Flexera Software" "d:\ProgramData\Flexera Software" install application (i.e. Beacon) install the application with usual default data location "c:\ProgramData\Flexera Software" After installation of the application: uninstall product (i.e. Beacon) move "c:\ProgramData\Flexera Software" to "d:\ProgramData\Flexera Software" run command: mklink /J "c:\ProgramData\Flexera Software" "d:\ProgramData\Flexera Software" install the application with usual default data location "c:\ProgramData\Flexera Software" Of course, I don't provide any guarantees on this, I'm only a community member and you are doing this on your own risk. Regards, Pavol
... View more
Aug 26, 2020
10:57 AM
Symptoms:
When running a ServiceNow export from FNMS to ServiceNow, you may encounter one or more errors related to connection or secure channel errors such as:
ServiceNowConnectionTest.SendTestConnection: Error Checking Connetion to endpoint: api/x_fls_flexera_fnms/integration/fnmstosn
System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.HttpWebRequest.GetRequestStream(TransportContext& context)
at System.Net.HttpWebRequest.GetRequestStream()
at FNMP.ServiceNow.HTTP.ServiceNowRequest.WriteData(HttpWebRequest request, String content)
at FNMP.ServiceNow.HTTP.ServiceNowRequest.Post(String content)
at FNMP.ServiceNow.HTTP.ServiceNowConnectionTest.SendTestConnection()
[2019-09-08 03:01:50] - [DEBUG]: Exiting ServiceNowConnectionTest.SendTestConnection
Diagnosis:
This has been identified as related to the changes ServiceNow made to disable both both TLS 1.0 and TLS 1.1 [1]
This process appears to have been in an instance-by-instance basis so not all customers are experiencing this issue.
Solution:
See KB article Transport Layer Security (TLS) 1.1 & 1.2 Configuration
References:
https://hi.service-now.com/kb_view.do?sysparm_article=KB0746078
... View more
Aug 14, 2020
04:04 AM
1 Kudo
Hello @msutharh,
Are you trying to set up a custom HTTPS certificate at all? There is a known issue where an invalid certificate will throw an error message that exceeds the logging buffer, hence bufio.Scanner: token too long.
If you are trying to set up a custom HTTPS certificate, could you try and follow the steps on the following KB article: How do I generate my own signed certificate for use with Beacon Monitor?
Let me know if any of the above helps.
... View more
Jul 21, 2020
11:51 AM
1 Kudo
Thanks a lot mfranz for your help and sharing such good document, definitely it would help us to fix our issue related to AWS EC2 connector. I will update this thread once get fixed out issue. Thanks again for your help. Best regards, Sandeep
... View more
Jul 20, 2020
03:27 PM
Strange indeed, we've been going back and forth, the case was opened a month ago Case#2153023. Hashing out the script is what was used as a workaroud all seems to work now. Reegards, Pardon
... View more
Jul 16, 2020
07:14 AM
Introduction
The built-in functionality of BeaconMonitorConfigurationTool.exe bundled with Beacon Monitor, is enough for simple certificate management:
to generate a self-signed certificate and private key pair.
to generate a key file, then using OpenSSL (using openssl req: generate a certificate signing request (CSR).
However, for more control over generating the certificate it may be preferable or offer greater flexibility, to use a 3rd party tool such as OpenSSL to generate the request. Other tools are also possible, but for the purposes of this guide OpenSSL is primarily used and the CA is Windows Certification Authority.
OpenSSL can be installed easily using Chocolately package manager (https://chocolatey.org/install) or installed manually, to install OpenSSL using Chocolately:
choco install openssl
Outcome
The outcome of this should be a CA-signed certificate and key pair:
The key should be generated in PKCS#8 format, other formats such as PKCS#1 are unsupported.
The certificate should not be encrypted.
The result should be a 'valid and trusted certificate' and no warning related to the certificate in any supported browser:
Procedure
Open a PowerShell window and create a new folder for the new key, cert, etc:
New-Item -ItemType Directory mycert Set-Location mycert
Create an OpenSSL config file (config.cnf) in the same directory with the contents, adjust as appropriate:
[req_distinguished_name]
countryName = GB
stateOrProvinceName = Merseyside
localityName = Cheshire
organizationName = Flexera
commonName = mybeacon.flexera.com
[req]
distinguished_name = req_distinguished_name
default_bits = 2048
req_extensions = v3_req
prompt = no
[v3_req]
basicConstraints = CA:FALSE
keyUsage = nonRepudiation, digitalSignature, keyEncipherment
subjectAltName = @alt_names
[alt_names]
DNS.1 = mybeacon.flexera.com
Generate a new PKCS#8 private key:
openssl genpkey -out key.pem -algorithm RSA -pkeyopt rsa_keygen_bits:2048
Alternatively use BeaconMonitorConfigurationTool.exe to generate the key (delete cert.pem after running):
.\BeaconMonitorConfigurationTool.exe generate-cert -ca false
Create the certificate signing request (CSR):
openssl req -new -out server.req -key key.pem -config config.cnf
Copy the server.req to the CA and issue the certificate:
Export the Binary Certificate as server.cer:
Copy the certificate back to the Beacon Monitor and use OpenSSL to change the encoding from binary DER to ASCII PEM:
openssl x509 -inform der -in server.cer -out cert.pem
You should have the following files when you're done. You need cert.pem and key.pem:
Copy the files to the Beacon Monitor Certificate folder and restart the service, check that the certificate now shows as valid and trusted. If it does not, there could be several reasons (this list is not exhaustive):
The CA may not be trusted by the accessing client machine.
The common name in the certificate is different to the domain in the URL, and the name is also missing from the Subject Alternative Name (SAN). For example if the machine's IP and not hostname is used to access the Beacon Monitor and the IP is not present in the certificate then this will generate a certificate warning.
The date on the certificate has expired or is not valid yet.
The CA has revoked the certificate and the CA has a Certificate Revocation List (CRL) which is accessible.
The certificate algorithm is not considered secure by the browser.
... View more
Labels:
Dec 19, 2019
12:27 PM
1 Kudo
Hello, Our DBA suggested not to change recovery model to "Simple" from "Full" as this will affect database recovery in event of failure so management is not agree to change it as this is very critical tool for them. As per suggestion provided by support, our DBA has took care for transaction log backup, they did necessary changes in the database so hopefully import should complete in minimal time. Let's see tonight's import how it goes. I will update this thread tomorrow. Thank you very much. Sandeep
... View more
Dec 10, 2019
09:46 AM
Yes, you can have one role which specifies multiple policies - the default adapter is designed to handle multiple policies, each with a single Arn for each policy pointing to a different account.
The version I provided last will also allow you to specify multiple Arns per policy (which appears to be the situation in your environment).
I would note that I think the reason it is taking so long, is that you have multiple of the same policy referring to the same Arn - so you're getting inventory once, then you get it again, and again - each time having to remove the duplicates.
It may be an idea to start off with setting up the basic account access (to the master account) - confirm it is working as expected and within performance figures, and then slowly add one at a time to confirm if everything is working.
With the amount of accounts you have, it may be an idea to split them up into groups which use different roles / policies so it's easier to manage - but that's just a simple suggestion 🙂
... View more
Dec 09, 2019
07:21 AM
@ccrawford ,
That was my initial thoughts however when I looked at RHEV-H this is the hypervisor mode of RHEV which uses VDSM and for VDSM to work you have to disable libvert which is why I suspect it won't work.
... View more
Nov 12, 2019
04:28 PM
1 Kudo
Perfect thanks. I didn't go into the 1st link where it calls out April 2015 dates, but when you go into the content packs to download them, they are correctly reflecting the actual ARL, PURLs etc. Should have done one more click yesterday. Thanks again.
... View more
- Tags:
- to the
Nov 11, 2019
09:31 AM
Are you also using a 2019 R1 beacon?
Could you upload the following:
Zip of C:\ProgramData\Flexera Software\Compliance\ImportProcedures
Copy of C:\ProgramData\Flexera Software\Beacon\config.xml
... View more
Apr 24, 2019
08:23 AM
2 Kudos
I would also add to back up the HKLM\SOFTWARE\WOW6432Node\ManageSoft Corp keys in case you have modified them and need to reference back to them.
... View more
Feb 23, 2019
12:03 AM
Summary We have enabled Controlled Folder Access (CFA) and now Windows Defender is telling us that the agent is trying to modify files. Why is this? Symptoms We have enabled Controlled Folder Access (CFA) and now Windows Defender is telling us that the agent is trying to modify files. Why is this?
Cause As per Microsoft:
Controlled Folder Access in Windows Security reviews the apps that can make changes to files in protected folders. Occasionally, an app that is safe to use will be identified as harmful.
This is a false detection caused by the new CFA feature found in recent versions of Windows Defender (Windows 10 and Windows Server 2016). As the FNMS agent must run on multiple versions of Windows where CFA may or may not be present, the method in how the agent requests access and scans a machine could be seen as malicious activity by such a feature.
Steps To Reproduce
Resolution Add the agent to the list of CFA exclusions or turn off CFA. The instructions to perform this are available via the Microsoft link in the Additional Inforrmation section of this KB.
Workaround
Additional Information Allow a blocked app in Windows Security, Microsoft. Retrieved 28/11/18 Allow specific apps to make changes to controlled folders, Microsoft. Retrieved 03/12/18
Related Documents
Related KB Articles
... View more
Labels:
About
Software Engineer
Latest posts by ccrawford
Subject | Views | Posted |
---|---|---|
1021 | Oct 08, 2020 06:38 AM | |
Re: What is the best way to find memory leaks in JaveScript? | 9 | Sep 01, 2020 06:46 AM |
1233 | Aug 26, 2020 10:57 AM | |
772 | Aug 14, 2020 04:04 AM | |
1018 | Jul 17, 2020 08:46 AM | |
2833 | Jul 16, 2020 01:23 PM | |
1353 | Jul 16, 2020 08:39 AM | |
846 | Jul 16, 2020 07:14 AM | |
1515 | Dec 16, 2019 12:16 PM | |
1877 | Dec 16, 2019 05:07 AM |
Activity Feed
- Got a Kudo for Re: AWS Connector - scale to 500+ accounts. Oct 08, 2020 09:05 PM
- Got a Kudo for Re: AWS Connector - scale to 500+ accounts. Oct 08, 2020 08:59 AM
- Got a Kudo for Re: AWS Connector - scale to 500+ accounts. Oct 08, 2020 08:52 AM
- Got a Kudo for Re: AWS Connector - scale to 500+ accounts. Oct 08, 2020 08:13 AM
- Posted Re: AWS Connector - scale to 500+ accounts on FlexNet Manager Forum. Oct 08, 2020 06:38 AM
- Posted Re: What is the best way to find memory leaks in JaveScript? on FlexNet Manager Forum. Sep 01, 2020 06:46 AM
- Posted ServiceNow exports failing due to incompatible TLS versions on FlexNet Manager Knowledge Base. Aug 26, 2020 10:57 AM
- Got a Kudo for Re: Beacon Monitoring tool. Aug 14, 2020 04:13 AM
- Posted Re: Beacon Monitoring tool on FlexNet Manager Forum. Aug 14, 2020 04:04 AM
- Kudoed Re: AWS EC2 connector import failing for mfranz. Jul 29, 2020 03:42 AM
- Kudoed Monthly Vulnerability Review – June 2020 for wmahmood. Jul 17, 2020 12:02 PM
- Posted Re: Error when pointing to a new FNMS Database Instance on FlexNet Manager Forum. Jul 17, 2020 08:46 AM
- Posted Re: AWS EC2 connector import failing on FlexNet Manager Forum. Jul 16, 2020 01:23 PM
- Kudoed Re: AWS EC2 connector import failing for ChrisG. Jul 16, 2020 01:15 PM
- Posted Re: Error when pointing to a new FNMS Database Instance on FlexNet Manager Forum. Jul 16, 2020 08:39 AM
- Posted How do I generate my own signed certificate for use with Beacon Monitor? on FlexNet Manager Knowledge Base. Jul 16, 2020 07:14 AM
- Posted Re: Import and Reconcile takes lot of time after upgrade Flexnet Manager Suite to 2019 R1 on FlexNet Manager Forum. Dec 16, 2019 12:16 PM
- Posted Re: Import and Reconcile takes lot of time after upgrade Flexnet Manager Suite to 2019 R1 on FlexNet Manager Forum. Dec 16, 2019 05:07 AM
- Kudoed Re: O365 connector connectivity query for mag00_75. Dec 13, 2019 11:04 AM
- Posted Re: Import and Reconcile takes lot of time after upgrade Flexnet Manager Suite to 2019 R1 on FlexNet Manager Forum. Dec 13, 2019 10:58 AM