cd your-tomcat-install # deleting web application rm -rf webapps/*-ext # deleting jars and config files from Liferay find -name "ext-*" | xargs rm -rf # stopping Liferay bin/shutdown.sh ps ax | grep life #... wait until life ends ;) ....# ps ax | grep life #... wait until life ends ;) ....# ps ax | grep life #... wait until life ends ;) ....# # Starting Liferay bin/startup.sh tail -f logs/catalina.out
其中的
find -name "ext-*" | xargs rm -rf
这步 例如我的ext项目为 ext-test 要把
"ext-text*" 以免误删到其他的ext. 这样就删除了。 需要重新部署的话 就把ext的war复制到 liferay的deploy目录下 重启tomcat即可