The owner should be root, group should be root and
permissions should be 644.
If owner, group or permissions are other than this then
escalate to the Merce dev team.
# ci -l passwd
Enter the following comment
revision before changing uucp shell - _your_name_
# cp /etc/passwd /var/tmp
# cd /var/tmp
# vi passwd
Search for 'uucp'
You will see a line similar to this line
uucp:x:10:14:uucp:/var/spool/uucp:/sbin/nologin
The last column of this line needs to be changed. Change the
last column of the line /sbin/nologin to /bin/bash
Thus the above line should now look like this
uucp:x:10:14:uucp:/var/spool/uucp:/bin/bash
Please note that you need to change only the last column and
nothing else in this line.
Save and quit
# diff /etc/passwd /var/tmp/passwd
This output show only the difference of the lines that have been
changed. If it does then go on to the next step else escalate to the
Merce dev team.
# mv /var/tmp/passwd /etc/passwd
Restore the owner, group noted earlier, using chown command
Restore the permissions noted earlier, using chmod command
Change value of MAXCONN in /etc/mail/mfilter.cf
# cd /etc/mail/
# mkdir -p RCS
# ls -l mfilter.cf
Note down the owner, group and permissions.
The owner should be root, group should be root and
permissions should be 644.
If owner, group or permissions are other than this then
escalate to the Merce dev team.
# ci -l mfilter.cf
Enter the following comment
revision before changing MAXCONN - _your_name_
# cp mfilter.cf /var/tmp
# cd /var/tmp
# vi mfilter.cf
Search for 'MAXCONN'
You should see a line which is
MAXCONN: 40
Replace this line with the following line
MAXCONN: 225
#diff /var/tmp/mfilter.cf /etc/mail/mfilter.cf
This output show only the difference of the lines that have been
changed. If it does then go on to the next step else escalate to the
Merce dev team.
#mv /var/tmp/mfilter.cf /etc/mail/mfilter.cf
# cd /etc/mail
Restore the owner, group noted earlier, using chown command
Restore the permissions noted earlier, using chmod command
Restart mfilter and check via telnet as described here[1]
Edit /etc/openldap/slapd.conf
# grep Netldaporg /etc/merce/Siteconfig.sh
Note down the value of the variable Netldaporg. for eg.
Netldaporg="VAV"
means that the variable Netldaporg has the value VAV.
# cd /etc/openldap
# ls -l slapd.conf
Note down the owner, group and permissions.
The owner should be root, group should be ldap and
permissions should be 640.
If owner, group or permissions are other than this then
escalate to the Merce dev team.
# ci -l slapd.conf
Enter the following comment
revision before replacing starcom with organization name - _your_name_
# cp slapd.conf /var/tmp
# cd /var/tmp
# vi slapd.conf
Search for the pattern 'starcom'
Replace all the values of 'starcom' with the value of Netldaporg
that you had obtained from /etc/merce/Siteconfig.sh