操作步骤
1. 在 CMD 中关闭监听
lsnrctl stop
2. 登录 SQL Plus 查看 local_listener 参数,因为使用的是默认端口1521,所以VALUE里面是空的
SQL>show parameter local_listener
3. 重建 Listener 指定新端口号
4. 在 SQL Plus 中修改 local_listener 参数
SQL>alter system set local_listener="(address = (protocol = tcp)(host = 主机名或IP)(port = 9303))";
5. 在 CMD 中启动监听
lsnrctl start
6. 重启 Oracle Server 并进行验证
参考资料
https://www.cnblogs.com/leihongnu/p/14756665.html