Running the Uninstaller

Run a shell script to uninstall SAP Mobile Platform server components.

  1. Open a terminal window.
  2. Go to SMP_HOME.
  3. Launch the uninstaller:
    sh SilentUninstall_Linux.sh
  4. When you see the message that SAP Mobile Platform was successfully uninstalled, enter exit to close the terminal window.
  5. Delete any folders and files remaining in the SAP Mobile Platform Server installation directory.
  6. If you are using a custom database, archive your data, then execute the appropriate command below to delete the SAP Mobile Platform database tables.
    • ASE – at the isql prompt (if you changed the default database name, replace smp3 with the new name):
      drop database smp3;
    • DB2 – at DB2 prompt (if you changed the default database user name, replace gomobile with the new name):
      drop schema gomobile;
    • Oracle – at SQL*Plus prompt (if you changed the default database user name, replace gomobile with the new name):
      drop user gomobile cascade;

      .