简体   繁体   中英

Mule Server - application code to be deployed in standalone folder

Our Mule 3 server is installed at "/mule/instance0/" on our UNIX server and the application is deployed under "/mule/instance0/apps/" folder. We have been deploying a zip file into the "/mule/instance0/apps/" folder and application runs fine.

There is a new requirement to deploy the application zip file in a folder other than "/mule/instance0/apps" folder (say "/tmp"). We tried looking for the changes that need to be made and they were rather humongous. Does anybody know of a simple config change to pick the application code from a folder other than "/mule/instance0/apps" ?

Thanks, Midhun

You can make apps directory a symbolic link to tmp: $cd $MULE_HOME; rm -rf apps; ln -s /tmp apps $cd $MULE_HOME; rm -rf apps; ln -s /tmp apps

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM