open_cursors = 300 db_block_buffers = 19754 # using an 8K db_block_size, ie ~160 MB shared_pool_size = 54121472 large_pool_size = 15728640 java_pool_size = 20971520 /etc/system: set shmsys:shminfo_shmmax=4294967295 set shmsys:shminfo_shmseg=3072 set shmsys:shminfo_shmmni=3072 set semsys:seminfo_semaem=16384 set semsys:seminfo_semmni=3072 set semsys:seminfo_semmap=3074 set semsys:seminfo_semmns=310 set semsys:seminfo_semmsl=1600 set semsys:seminfo_semopm=300 set semsys:seminfo_semmnu=6150 set semsys:seminfo_semume=750 set semsys:seminfo_semvmx=32767 set msgsys:msginfo_msgmap=3072 set msgsys:msginfo_msgmax=12000 > I have added a script to start up Oracle on reboot, but I can't get the > listener to startup on reboot. Does anyone have a script or know how to > do this? Try something like: #!/bin/sh # # Set ORA_HOME to be equivalent to the ORACLE_HOME # from which you wish to execute dbstart and # dbshut # set ORA_OWNER to the user id of the owner of the # Oracle database in ORA_HOME ORA_HOME=/u01/app/oracle/product/8.1.7 ORA_OWNER=oracle export ORA_HOME export ORA_OWNER if [ ! -f $ORA_HOME/bin/dbstart -o ! -d $ORA_HOME ] then echo "Oracle startup: cannot start" exit fi case "$1" in 'start') # Start the Oracle databases: su - $ORA_OWNER -c $ORA_HOME/bin/dbstart su - $ORA_OWNER -c $ORA_HOME/bin/lsnrctl <