lunes, 20 de abril de 2020

WALLET ORACLE DATABASE ./mkstore

/u01/app/oracle/product/11.2.0/db_1/bin
[oracle@localhost bin]$ ls -ltr mkstore
-rwxr-xr-x 1 oracle oinstall 2816 Mar 20  2013 mkstore


How do I create Oracle Wallet files on my database server?

From the database server: 
  1. Create a secure folder for the Oracle wallet
    mkdir -p /product/11.2.0.4/owm/wallets/ 
  2. Give permissions to the folder
    chmod -R 700 /product/11.2.0.4/owm/wallets 
  3. Create the wallet by specifying the secure folder path
    Path - /product/11.2.0.4/bin
    sudo ./mkstore -wrl /product/11.2.0.4/owm/wallets/oracle/ -create
     
  4. Configure and confirm the password
  5. Edit sqlnet.ora and add the newly created wallet location
    vi /product/11.2.0.4/network/admin/sqlnet.oraSQLNET.WALLET_OVERRIDE = TRUE
    WALLET_LOCATION=(SOURCE=(METHOD=FILE)
    (METHOD_DATA=(DIRECTORY=/product/11.2.0.4/owm/wallets/))

No hay comentarios: