SOLVED

TNS-12555: TNS: permission denied

Asked by OracleDba10 viewsoracle
1
2
3
4
5
TNS-12555: TNS: permission denied

ERROR

TNS-12555: TNS:permission denied
#oracle#error

Solutions(1)

Accepted Solution
1
2
3
4
5
6
7
8
9
10
11
12
13
Check the whether the .oracle directory exists in  /var/tmp, if no then , create and grant it as follows.

mkdir /var/tmp/.oracle

chmod 01777 /var/tmp/.oracle

chown root /var/tmp/.oracle

chgrp root /var/tmp/.oracle

then start listener again

$ lsnrctl status listener
OracleDba

Post Your Solution