Member since
04-28-2020
146
Posts
1
Kudos Received
0
Solutions
03-08-2024
11:16 AM
1 Kudo
@naymar Has the reply helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future. Thanks.
... View more
12-23-2023
11:55 AM
You may want to check the logs , this may be caused for example If you don't have enough space in a partition filesystem If the tmp folder is now allowed to write ( not able to create a file ) The specific error of the file and location may appear in your CM logs / agent logs /service logs of the failing service ( per last screenshot / Hive ) Hope it helps.
... View more
11-22-2023
10:57 PM
@itdm_bmi, Have any of the replies helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future. If you are still experiencing the issue, can you please provide the information @Scharan and @FelipeG have requested?
... View more
08-10-2023
04:41 PM
@ManasP Has the reply helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future. Thanks.
... View more
07-01-2020
09:43 AM
Great article! I faced the following error while trying adding data to ldap (Step 13.) # ldapadd -x -W -D "cn=Manager,dc=example,dc=com" -f /root/ldap/base.ldif Enter LDAP Password: adding new entry "dc=example,dc=com" ldap_add: Invalid syntax (21) additional info: objectClass: value #1 invalid per syntax After some research, found that we need to add the cosine and nis LDAP schemas before running the preceding command. # ldapadd -Y EXTERNAL -H ldapi:/// -f /etc/openldap/schema/cosine.ldif # ldapadd -Y EXTERNAL -H ldapi:/// -f /etc/openldap/schema/nis.ldif # ldapadd -Y EXTERNAL -H ldapi:/// -f /etc/openldap/schema/inetorgperson.ldif
... View more