Legacy Knowledge Base
Published Sep. 10, 2025

How to clear only a specific OSGi module directory from osgi/state/

Written By

Jose L. Bango

How To articles are not official guidelines or officially supported documentation. They are community-contributed content and may not always reflect the latest updates to Liferay DXP. We welcome your feedback to improve How To articles!

While we make every effort to ensure this Knowledge Base is accurate, it may not always reflect the most recent updates or official guidelines.We appreciate your understanding and encourage you to reach out with any feedback or concerns.

Legacy Article

You are viewing an article from our legacy "FastTrack" publication program, made available for informational purposes. Articles in this program were published without a requirement for independent editing or verification and are provided"as is" without guarantee.

Before using any information from this article, independently verify its suitability for your situation and project.

Issue

  • Is it possible to clear only the data from a specific module in osgi/state/ instead of clearing the whole directory?

Environment

  • Liferay DXP 7.0+

Resolution

  • Imagine we want to clear the data of module com.example.
  • Use the Gogo Shell to find the OSGi bundle id:
    g! lb -s com.example
    START LEVEL 20
    ID|State |Level|Symbolic name
    1197|Active | 15|com.example (3.0.59)|3.0.59
  • Use the bundle id, 1197 in the above example, to find the bundle directory. By default: $LIFERAY_HOME/osgi/state/org.eclipse.osgi/1197.
    • Otherwise, you can use the b <bundle-id> command to find the path:
      g! b 1197 | grep state
      Id=1197, Status=ACTIVE Data Root=/opt/liferay/osgi/state/org.eclipse.osgi/1197/data
  • Finally, remember to stop you application server before clearing the directory.

Additional Information

Did this article resolve your issue ?

Legacy Knowledge Base