Oracle网络服务端配置
Oracle网络周边配置支持3种应用连接C/S应用连接:sqlplus sys/x2145637@orcljava应用连接Web client应用连接支持的协议TCP/IPTCP
Oracle网络周边配置
支持3种应用连接
C/S应用连接:sqlplus sys/x2145637@orcl
java应用连接
Web client应用连接
支持的协议
TCP/IP
TCP/IP with SSL
Named pipes
SDP
oracle提供了2种java驱动
1.jdbc OCI Driver:封装oracle OCI(oracle call interface)
2.JDBC Thin Driver: 用java重写底层协议
概念和术语
service name:服务名,等于global_names=db_name+db_domain。
connect descriptor:IP地址和服务名。
Listener:服务端必须开启监听程序,监听程序接受PMON进程注册的Service Registration信息(服务名、实例名、service handlers)启动一个service handlers进程与之连接通信。
Service Registration:在listener注册服务,服务名,实例名,网络地址。
service handlers:服务处理者进程,listener进程派生的子进程。
PMON将服务信息(实例信息)注册给监听进程(如果监听程序没有开启,pmon进程每60s尝试连接一次监听进程,通过alter system register可修改),用户请求服务时,监听进程启动服务处理者进程进行与之通信。
五种命名解析方法
Host naming:基于操作系统解析
Local naming:tnsnames.ora
Directory naming:目录服务,ldap.ora
oracle Names
External naming
TNS:transparence Network Substrate透明网络底层
连接远程oracle服务器需配置tnsnames.ora,提供IP地址、端口、服务名。
listener进程连接方法(lsnrctl start 启动监听程序)
1.派生出子进程并将TCP描述符传给子进程
2.将TCP连接符传给oracle共享服务配置的dispatch进程
3.重定位给一个dispatch或服务进程,通过不同port
连接池存在着若干与数据库的长连接,可以立即连接到数据库
配置listener的2种方法
1、动态服务注册:pmon动态注册服务信息给listener,默认地址为PMON所在IP,端口为1521
不想使用默认的设置,必须设置初始化参数local_listener或者定义oracle共享服务器的dispatch的LISTENERS属性
只需配置初始化参数
1.1 SERVICE_NAMES=global database name=db_name+db_domain
1.2 INSTANCE_NAME
2、静态服务注册:修改listener.ora的信息
IPC服务器和客户端在同一机器,TCP/IP服务器和客户端在不同机器
可使用图形界面配置
2.1、netca
2.2、netmgr
lsnrctl实用程序
lsnrctl start listener_name
lsnrctl stop listener_name
进入lsnrctl后可设置一些参数
set trc_level ADMIN;追踪等级
show trc_directory;追踪文件目录

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Go language is an efficient, concise and easy-to-learn programming language. It is favored by developers because of its advantages in concurrent programming and network programming. In actual development, database operations are an indispensable part. This article will introduce how to use Go language to implement database addition, deletion, modification and query operations. In Go language, we usually use third-party libraries to operate databases, such as commonly used sql packages, gorm, etc. Here we take the sql package as an example to introduce how to implement the addition, deletion, modification and query operations of the database. Assume we are using a MySQL database.

Apple's latest releases of iOS18, iPadOS18 and macOS Sequoia systems have added an important feature to the Photos application, designed to help users easily recover photos and videos lost or damaged due to various reasons. The new feature introduces an album called "Recovered" in the Tools section of the Photos app that will automatically appear when a user has pictures or videos on their device that are not part of their photo library. The emergence of the "Recovered" album provides a solution for photos and videos lost due to database corruption, the camera application not saving to the photo library correctly, or a third-party application managing the photo library. Users only need a few simple steps

Hibernate polymorphic mapping can map inherited classes to the database and provides the following mapping types: joined-subclass: Create a separate table for the subclass, including all columns of the parent class. table-per-class: Create a separate table for subclasses, containing only subclass-specific columns. union-subclass: similar to joined-subclass, but the parent class table unions all subclass columns.

How to use MySQLi to establish a database connection in PHP: Include MySQLi extension (require_once) Create connection function (functionconnect_to_db) Call connection function ($conn=connect_to_db()) Execute query ($result=$conn->query()) Close connection ( $conn->close())

To handle database connection errors in PHP, you can use the following steps: Use mysqli_connect_errno() to obtain the error code. Use mysqli_connect_error() to get the error message. By capturing and logging these error messages, database connection issues can be easily identified and resolved, ensuring the smooth running of your application.

HTML cannot read the database directly, but it can be achieved through JavaScript and AJAX. The steps include establishing a database connection, sending a query, processing the response, and updating the page. This article provides a practical example of using JavaScript, AJAX and PHP to read data from a MySQL database, showing how to dynamically display query results in an HTML page. This example uses XMLHttpRequest to establish a database connection, send a query and process the response, thereby filling data into page elements and realizing the function of HTML reading the database.

PHP is a back-end programming language widely used in website development. It has powerful database operation functions and is often used to interact with databases such as MySQL. However, due to the complexity of Chinese character encoding, problems often arise when dealing with Chinese garbled characters in the database. This article will introduce the skills and practices of PHP in handling Chinese garbled characters in databases, including common causes of garbled characters, solutions and specific code examples. Common reasons for garbled characters are incorrect database character set settings: the correct character set needs to be selected when creating the database, such as utf8 or u

Through the Go standard library database/sql package, you can connect to remote databases such as MySQL, PostgreSQL or SQLite: create a connection string containing database connection information. Use the sql.Open() function to open a database connection. Perform database operations such as SQL queries and insert operations. Use defer to close the database connection to release resources.
