Page 1 of 1

OA Framework development: Apache

Posted: Thu Jul 12, 2007 3:47 pm
by mckoy2404
Our development team is doing lots of OA Framework development in our Oracle Applications development environment. In order to see the results of development efforts they are requently requesting that Apache be bounced. This negatively impacts other people working in the same environment.

Do you have recommendations on how to deal with this? Is it possible to establish multiple Apache listener ports and then only bounce one of the listeners? Do you know how other companies deal with this?

Posted: Sun Jul 15, 2007 4:03 pm
by mckoy2404
i end up using the following it seem to work
Code:
echo "Stoping Apache..."
$OAD_TOP/admin/scripts/$CONTEXT_NAME/adapcctl.sh stop
echo "Apache stopped..."
echo "removing cache..."
cd $COMMON_TOP/_pages;rm -rf *
echo "Cache cleared..."
echo "Starting apache..."
$OAD_TOP/admin/scripts/$CONTEXT_NAME/adapcctl.sh start
echo "Apache bounced successfully..."