Practices for Lesson 5: Configuring the Oracle Network Environment
2020.01.29 BoobooWei
实践5:管理网络
实践5:概览
实践5-1:配置Oracle网络以访问另一个数据库
Overview
Task
Practice
KnowledgePoint
实践5-2:创建另一个监听
Overview
Task
Practice
KnowledgePoint
关于网络工具
网络配置文件
实践5-3:配置Oracle网络以访问PDB数据库
Overview
Task
Practice
实践5:概览
Practices for Lesson 5: Overview
In this practice, you configure connectivity between your machine and a database on one of your classmate’s machines. You also configure and test an additional listener.
Note: This practice is entirely for educational purposes and no future practices rely on successful completion of this practice.
在此实践中,您将配置您的计算机与某个同学计算机上的数据库之间的连接。您还可以配置和测试一个额外的监听器。
注意:这个练习完全是为了教育目的,未来的练习不依赖于这个练习的成功完成。
实践5-1:配置Oracle网络以访问另一个数据库
Practice 5-1: Configuring the Oracle Network to Access Another Database
Overview
Configure your network environment so that you can connect to a partner’s orcl database. Use local naming and create a new network service name called testorcl that maps to your partner’s orcl database. Test your network changes by attempting to connect to your partner’s database by using the testorcl service name.
Task
- Make a copy of your tnsnames.ora file. It is in your database $ORACLE_HOME/network/admin directory.
- Use Oracle Net Manager (netmgr) to create the testorcl net service name on your machine.
- Test your changes to the network configuration by using SQLPlus. Enter system@testorcl and then enter *oracle_4U when prompted for the password. Select the INSTANCE_NAME and HOST_NAME columns from the V$INSTANCE view to view information about the host.
Practice
配置网络环境,以便可以连接到合作伙伴的orcl数据库。使用本地命名并创建一个名为testorcl的新网络服务名称,该名称映射到您的合作伙伴的orcl数据库。通过使用testorcl服务名称尝试连接到合作伙伴的数据库来测试网络更改。
复制文件
tnsnames.ora
,该文件所在目录为$ORACLE_HOME/network/admin
[oracle@oracle01 ~]$ cd $ORACLE_HOME/network/admin
[oracle@oracle01 admin]$ pwd
/u01/app/oracle/product/12.2.0/db_1/network/admin
[oracle@oracle01 admin]$ ll
total 16
-rw-r-----. 1 oracle oinstall 343 Sep 22 17:02 listener.ora
drwxr-xr-x. 2 oracle oinstall 64 Sep 22 14:58 samples
-rw-r--r--. 1 oracle oinstall 1441 Aug 28 2015 shrept.lst
-rw-r-----. 1 oracle oinstall 198 Sep 22 17:02 sqlnet.ora
-rw-r-----. 1 oracle oinstall 430 Nov 3 19:42 tnsnames.ora
[oracle@oracle01 admin]$ cp tnsnames.ora tnsnames.old使用Oracle 网络管理工具
netmgr
创建testorcl
网络服务。| 步骤 | 窗口 | 选择/值 |
| —— | —————————————————————- | —————————————————————————————— |
| a. | bash界面切换到oracle用户 | $ netmgr |
| b. | Net Manager navigation pane | Expand Local. |
| c. | | Select Service Naming. |
| d. | | Expand Service Naming. |
| e. | | Click the green plus sign to launch the net service name wizard. |
| f. | Net Service Name Wizard: Welcome | Enter Service Name: testorcl Click Next. |
| g. | Net Service Name Wizard:…Protocol | Select TCP/IP (Internet Protocol). Click Next. |
| h. | Net Service Name Wizard:…Protocol Settings | Enter Host Name: address> Enter Port Number: 1521 Click Next. |
| i. | Net Service Name Wizard:…Service | Enter Service: orcl Click Next. |
| j. | Net Service Name Wizard:…Test | Click Test. |
| k. | Connection Test | Connection Test was successful Click Close. |
| l. | Net Service Name Wizard:…Test | Click Finish. |
| m. | Oracle Net Manager | Click File > Save Network Configuration Click File > Exit** |
通过 SQLPlus 测试网络配置。输入 system@testorcl 密码为 *oracle_4U 。从 V$INSTANCE 视图中查询实例名称和主机名。
sqlplus system@oracle@testorcl
> select instance_name,host_name from v$instance;
KnowledgePoint
客户机为了和服务器连接,必须先和服务器上的监听进程联络。ORACLE通过tnsnames.ora
文件中的连接描述符来说明连接信息。一般tnsnames.ora
是建立在客户机上的。如果是客户机/服务器结构,整个网络上只有一台机器安装了ORACLE数据库服务器,那么只需在每个要访问ORACLE服务器的客户机上定义该文件,在服务器上无需定义。但是,如果网络上有多台机器均安装了ORACLE数据库服务器,并且服务器之间有数据共享的要求,那么在每台服务器上都必须定义该文件。
实践5-2:创建另一个监听
Practice 5-2: Creating an Alternative Listener
Overview
In this practice, you create a second listener named LISTENER2 by using Oracle Net Manager.
Task
- Create a new listener called LISTENER2. Use port 1561 for this listener. Use Oracle Net Manager (netmgr) to create the new listener.
- Create a Service Name for both listeners by using Oracle Net Manager.
- Start the LISTENER2 listener by using the listener control utility.
- Configure the database to register with both listeners. Alter the LOCAL_LISTENER
initialization parameter. - Check the status of the new listener and test the new listener.
- You can now stop the new LISTENER2 listener because you do not need it for the remainder of the course.
- Reset the LOCAL_LISTENER initialization parameter to the default value.
Practice
使用Oracle网络管理工具
netmgr
创建一个新监听LISTENER2
,监听端口为1561
。使用Oracle网络管理工具
netmgr
创建一个新服务名LISTENER2
。启动新监听
LISTENER2
。lsnrctl start LISTENER2
通过修改参数
LOCAL_LISTENER
配置数据库的注册新监听。show parameter local_listener;
ALTER SYSTEM SET LOCAL_LISTENER=LISTENER2,LISTENER_BOOBOO SCOPE=BOTH;
System altered.
SYS@booboo>show parameter local_listener;
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
local_listener string LISTENER2, LISTENER_BOOBOO
SYS@booboo>exit检查新监听
LISTENER2
的状态,测试新监听。lsnrctl status LISTENER2
停止新监听
LISTENER2
。lsnrctl stop LISTENER2
重制参数
LOCAL_LISTENER
到默认值。alter system reset local_listener scope=spfile;
shutdown immediate
startup
show paramter local_listener;
执行结果
# 将参数改为默认值 |
KnowledgePoint
Oracle Net Listener是在数据库服务器上运行的独立进程。它接收传入的客户端连接请求,并管理这些请求到数据库服务器的流量。了解如何配置侦听器以接受客户端连接。
关于网络工具
使用用户界面工具
Oracle Net Services提供了可帮助您执行配置和管理任务的工具。本节包含以下主题:
- 使用Oracle Enterprise Manager Cloud Control配置Oracle Net Services
- 使用Oracle Net Manager配置Oracle Net Services
- 决定何时使用Oracle Enterprise Manager Cloud Control和Oracle Net Manager
- 使用Oracle Net Configuration Assistant配置网络组件
网络配置文件
配置文件 | 描述 |
---|---|
tnsnames.ora |
该文件主要位于客户端上,包含映射到连接描述符 s的网络服务名称。该文件用于本地命名方法。 |
sqlnet.ora |
位于客户端和数据库服务器计算机上,此文件可能包括以下内容:客户端域追加到不合格的服务名称或网络服务名称客户端解析名称时应使用的命名方法顺序记录和跟踪功能以使用连接路线外部命名参数Oracle安全性参数数据库访问控制参数 |
listener.ora |
位于数据库服务器上的用于侦听器的此配置文件可能包括以下内容:协议地址,它正在接受连接请求正在监听的数据库和非数据库服务侦听器使用的控制参数 |
cman.ora |
该配置文件位于运行Oracle Connection Manager的计算机上,包括以下组件:监听端点访问控制规则列表参数清单每个Oracle Connection Manager配置都封装在单个名称-值(NV)字符串中,该字符串由前面的组件组成。 |
实践5-3:配置Oracle网络以访问PDB数据库
Overview
通过本实践掌握新建服务名用于访问pdb数据库的配置方法。
Task
- Make a copy of your tnsnames.ora file. It is in your database $ORACLE_HOME/network/admin directory.
- Use Oracle Net Manager (netmgr) to create the booboopdb1 net service name on your machine.
- Test your changes to the network configuration by using SQLPlus. Enter *scott/tiger@booboopdb.
Practice
配置网络环境,以便可以连接到PDB数据库 booboopdb1
。使用本地命名并创建一个名为booboopdb1的新网络服务名称,该名称映射到PDB的booboopdb1数据库。通过使用booboopdb1服务名称连接pdb数据库。
使用Oracle 网络管理工具
netmgr
创建booboopdb1
网络服务。通过使用
booboopdb1
服务名称连接PDB数据库。sqlplus scott/tiger@booboopdb1
执行结果:
[oracle@oracle01 admin]$ sqlplus scott/tiger@booboopdb1 |