# mkstore.txt

# The mkstore command will create a wallet.  The wallet
# is protected by a password, which must be at least 8
# characters long and include numbers or special characters.
# We will use "its4security".

# First, we see there is no existing wallet.

ls $ORACLE_BASE/admin/$ORACLE_SID

# Create the wallet, setting the new password when prompted.

mkstore -wrl $ORACLE_BASE/admin/$ORACLE_SID/wallet -create

# Examine the files created.

ls $ORACLE_BASE/admin/$ORACLE_SID
cd $ORACLE_BASE/admin/$ORACLE_SID/wallet
ls -l

# List the contents of the wallet.
mkstore -wrl $ORACLE_BASE/admin/$ORACLE_SID/wallet -list
