- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- sqlnet.log appears in home directory
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-08-2003 05:08 AM
тАО04-08-2003 05:08 AM
sqlnet.log appears in home directory
An example of the log is .....
Fatal NI connect error 12545, connecting to:
(DESCRIPTION=(ADDRESS=(PROTOCOL=beq)(PROGRAM=oracle)(ARGV0=oracle)(ARGS='(DESCR
IPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))')(DETACH=NO))(CONNECT_DATA=(CID=(PRO
GRAM=)(HOST=as013_1)(USER=xxadmin))))
VERSION INFORMATION:
TNS for HPUX: Version 8.0.6.0.0 - Production
Oracle Bequeath NT Protocol Adapter for HPUX: Version 8.0.6.0.0 - Produc
tion
Time: 05-APR-03 13:52:02
Tracing not turned on.
Tns error struct:
nr err code: 12206
TNS-12206: Message 12206 not found; No message file for product=NETWORK, fac
ility=TNS
ns main err code: 12545
TNS-12545: Message 12545 not found; No message file for product=NETWORK, fac
ility=TNS
ns secondary err code: 12560
nt main err code: 515
TNS-00515: Message 515 not found; No message file for product=NETWORK, facil
ity=TNS
nt secondary err code: 2
nt OS err code: 0
Does anyone have an idea what may cause these ?? I can set a job to clear them down, but Iwould like tofully understand the reason what creates them.
Thankyou.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-08-2003 05:15 AM
тАО04-08-2003 05:15 AM
Re: sqlnet.log appears in home directory
below a quote from metalink:
The logging is automatic, there is no way to turn logging off, but since you are on Unix server, you can redirect the log file to a null device, thus eliminating the problem of disk space consumption.
In the SQLNET.ORA file, set LOG_DIRECTORY_CLIENT and LOG_DIRECTORY_SERVER equal to a null device.
For example:
LOG_DIRECTORY_CLIENT = /dev/null
LOG_FILE_CLIENT = /dev/null
in SQLNET.ORA suppresses client logging completely.
To disable the listener from logging, set this parameter in the LISTENER.ORA file:
logging_listener = off
Regards
Yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-08-2003 05:23 AM
тАО04-08-2003 05:23 AM
Re: sqlnet.log appears in home directory
Also, according to Metalink can also be a TWO_TASK configuration problem with the connection to the database.
It is recommended not to rely on TWO_TASK variable for making default connection.
E.g. In a proC program use:
EXEC SQL CONNECT :user IDENTIFIED BY :pwd USING :connect_string;
hth
Yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-08-2003 12:29 PM
тАО04-08-2003 12:29 PM
Re: sqlnet.log appears in home directory
They also do not have the ORACLE_HOME set correctly from the "No message file" errors below that.
Hope this helps,
Thanks,
Brian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-08-2003 08:12 PM
тАО04-08-2003 08:12 PM
Re: sqlnet.log appears in home directory
Sqlnet.log trace file helps Tracing an operation and to obtain more information on the internal operations of the components of Net8. This information can be evaluated to identify the events that led to an error or see you is loging in for security purpose.
At the same time these log facility uses a large amount of disk space and may have a significant impact upon system performance.
You could redirect these log files to a location where you have other log files and then schedule a cron job to trim them on a regular basis.
The variables 'LOG_DIRECTORY_CLIENT' or 'LOG_DIRECTORY_SERVER' helps to specify an alternate directory for the log file.
If they are not specified in the sqlnet.ora file, it will default to the current working directory: $ORACLE_HOME/BIN.
If the 'LOG_DIRECTORY_CLIENT' or 'LOG_DIRECTORY_CLIENT' syntax is specified in the sqlnet.ora file, it should give you the directory:
LOG_DIRECTORY_CLIENT=c:\NET\ADMIN
LOG_DIRECTORY_SERVER=/tmp/trace
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-08-2003 08:23 PM
тАО04-08-2003 08:23 PM
Re: sqlnet.log appears in home directory
Else by default when there is a sql session from a directory it has its log file there.
Thanks