Si vous êtes un client Managed Hosting, cette rubrique ne vous concerne pas.
You might need to change the default port number on a Blackboard Learn Instance installed on Oracle. This might be because a port number conflicts with another TCP/IP default port that is being used by another process, or you need to use a non-default port for some other reason.
Change database ports on a Learn instance installed on Oracle
- Stop all services related to Blackboard Learn.
- Stop the Oracle listener using the following command:
[oracle@r5x64o11-px019 ~]$ lsnrctl stop
- Change the port number in the Oracle listener.ora file. For example, from the default port 1522 to 1521.
- Change the port number in the tnsnames.ora file as in the following example,where host_name is your host name and server_name is your server name.
[root@r5x64o11-px019 ~]# cd /usr/local/oracle/server_name/network/admin
[root@r5x64o11-px019 admin]# more listener.ora
# listener.ora Network Configuration File: /usr/local/oracle/server_name/network/admin/listener.ora
# Generated by Oracle configuration tools.
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = host_name)(PORT = 1522))
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
)
)
[root@r5x64o11-px019 admin]# more tnsnames.ora
# tnsnames.ora Network Configuration File: /usr/local/oracle/server_name/network/admin/tnsnames.ora
# Generated by Oracle configuration tools.
ENG11R1 =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = host_name)(PORT = 1522))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = ENG11R1)
)
) - Restart the Oracle listener using the following command:
[oracle@r5x64o11-px019 ~]$ lsnrctl start
- Change the port to which the database is listening:
sqlplus / as sysdba
> alter system set LOCAL_LISTENER="(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1522))";
> alter system register; - In the bb-config.properties file, change the bbconfig.database.server.portnumber value from 1521 to 1522. For steps to edit the bb-config.properties file, see bb-config.properties File.
- Run PushConfigUpdate in blackboard/tool/admin/. To learn more, see PushConfigUpdates.