today:
134
yesterday:
177
Total:
1,001,051

Reversing Require HTTPS

admin 2023.06.04 20:38 Views : 84

Reversing Require HTTPS

If you enable Reverse HTTPS, an Instance administrator can disable it by running the following SQL statements.

To reverse Require HTTPS:

  1. Connect in SQL*Plus or SQL Developer with the Application Express engine schema as the current schema, for example:
    • On Windows:

      SYSTEM_DRIVE:\ sqlplus /nolog
      SQL> CONNECT SYS as SYSDBA
      Enter password: SYS_password
      
    • On UNIX and Linux:

      $ sqlplus /nolog
      SQL> CONNECT SYS as SYSDBA
      Enter password: SYS_password
      
  2. Run the following statement:
    ALTER SESSION SET CURRENT_SCHEMA = APEX_180100;
    
  3. Run the following statement:
    BEGIN
        APEX_INSTANCE_ADMIN.SET_PARAMETER('REQUIRE_HTTPS', 'N');
        commit;
    end;
    /
    
No. Subject Author Date Views
» Reversing Require HTTPS admin 2023.06.04 84
5 Using SQL*Plus to Unlock and Change Passwords admin 2023.06.04 148
4 Column Data 일괄 추가 admin 2023.11.24 128
3 영수증 2023 file admin 2024.01.04 218
2 Null Display Value admin 2024.01.10 110
1 LAST DAY SQL admin 2024.01.19 112