Skip to content

Instantly share code, notes, and snippets.

@nakamuraos
Last active April 3, 2025 17:27
Show Gist options
  • Save nakamuraos/717eb99b5e145ed11cd754ad3714b302 to your computer and use it in GitHub Desktop.
Save nakamuraos/717eb99b5e145ed11cd754ad3714b302 to your computer and use it in GitHub Desktop.
Reset trial Navicat 15, Navicat 16, Navicat 17 on Linux
#!/bin/bash
# Author: NakamuraOS <https://github.com/nakamuraos>
# Latest update: 03/19/2025
# Tested on Navicat 15.x, 16.x, 17.x on Debian, Ubuntu.
BGRED="\e[1;97;41m"
ENDCOLOR="\e[0m"
echo -e "${BGRED} ${ENDCOLOR}"
echo -e "${BGRED} ┌──────────────────────────────────────┐ ${ENDCOLOR}"
echo -e "${BGRED} │ !!! WARNING !!! │ ${ENDCOLOR}"
echo -e "${BGRED} ├──────────────────────────────────────┤ ${ENDCOLOR}"
echo -e "${BGRED} │ ALL DATA can be destroyed. │ ${ENDCOLOR}"
echo -e "${BGRED} │ Always BACKUP before continuing. │ ${ENDCOLOR}"
echo -e "${BGRED} └──────────────────────────────────────┘ ${ENDCOLOR}"
echo -e "${BGRED} ${ENDCOLOR}"
echo -e "Report issues:\n> https://gist.github.com/nakamuraos/717eb99b5e145ed11cd754ad3714b302\n"
echo -e "Reset trial \e[1mNavicat Premium\e[0m:"
if [[ ! $1 =~ ^--?[Yy]([eE][sS])?$ ]]; then
read -p "Are you sure? (y/N) " -r
echo
if [[ ! $REPLY =~ ^[Yy]([eE][sS])?$ ]]; then
echo "Aborted."
exit 0
fi
fi
echo "Starting reset..."
DATE=$(date '+%Y%m%d_%H%M%S')
# Backup
echo "=> Creating a backup..."
cp ~/.config/dconf/user ~/.config/dconf/user.$DATE.bk
echo "The user dconf backup was created at $HOME/.config/dconf/user.$DATE.bk"
cp ~/.config/navicat/Premium/preferences.json ~/.config/navicat/Premium/preferences.json.$DATE.bk
echo "The Navicat preferences backup was created at $HOME/.config/navicat/Premium/preferences.json.$DATE.bk"
# Clear data in dconf
echo "=> Resetting..."
dconf reset -f /com/premiumsoft/navicat-premium/
echo "The user dconf data was reset"
# Remove data fields in config file
sed -i -E 's/,?"([A-F0-9]+)":\{([^\}]+)},?//g' ~/.config/navicat/Premium/preferences.json
echo "The Navicat preferences was reset"
# Done
echo "Done."
exit 0
@genialcode2077
Copy link

Can anyone integrate this great work along with the following great contribution?:

https://notabug.org/doublesine/navicat-keygen/src/linux

@L1so
Copy link

L1so commented Apr 25, 2024

Does this script will reset settings ? So if I save connection, will this script erase it?

@nakamuraos
Copy link
Author

Does this script will reset settings ? So if I save connection, will this script erase it?

No. It'll keep all current settings, your connections will remain in place.

@Cien267
Copy link

Cien267 commented May 6, 2024

I got this error: reset-trial-navicat.sh: 23: [[: not found
Did I do something wrong?

@dotmitsu
Copy link

dotmitsu commented May 6, 2024

I got this error: reset-trial-navicat.sh: 23: [[: not found Did I do something wrong?

Run it as sudo

@Cien267
Copy link

Cien267 commented May 6, 2024

I got this error: reset-trial-navicat.sh: 23: [[: not found Did I do something wrong?

Run it as sudo

still the same error bruh :<

@dotmitsu
Copy link

dotmitsu commented May 6, 2024

still the same error bruh :<

What distro do you use?

@Cien267
Copy link

Cien267 commented May 6, 2024

What distro do you use?

I am using Ubuntu 22.04

@dotmitsu
Copy link

dotmitsu commented May 6, 2024

What distro do you use?

I am using Ubuntu 22.04

Can you show screenshot how do run command, and the result? It works good on ubuntu 22.04

@Cien267
Copy link

Cien267 commented May 6, 2024

image
that's my terminal

@dotmitsu
Copy link

dotmitsu commented May 6, 2024

@Cien267 use
sudo ./reset-trial-navicat.sh
I think this script uses bash commands in it. And sh can't normally execute

@Cien267
Copy link

Cien267 commented May 6, 2024

@dotmitsu
I try chmod +x and run "./" instead of "sh" and it works. Thank you very much <3

@swatchion
Copy link

confirm it works on 17.0

@fast089609
Copy link

really works. Thank you

@tonyciou
Copy link

confirm it works on 17.1
Thank you

@lxj5891
Copy link

lxj5891 commented Dec 10, 2024

it works

@zhaoNjust
Copy link

find preferences.json preferences.json.lock
remove them
start navicat

@huzi068
Copy link

huzi068 commented Jan 8, 2025

Is there a win version available

@cgalaz
Copy link

cgalaz commented Mar 18, 2025

Funciona, muchas gracias

@oscarrfp
Copy link

oscarrfp commented Apr 3, 2025

Is there no chance of data or databases being deleted?

@nakamuraos
Copy link
Author

Is there no chance of data or databases being deleted?

Short answer: No, absolute.

Navicat is a database management tool, and it doesn't store your data. The connections in Navicat are just login information and configurations to access databases on remote servers.

This script only modifies Navicat's trial data (such as registry entries or configuration files), it won't affect your actual database data. However, it's still a good idea to backup your navicat data in case you have multiple important connection configurations, and newer versions of Navicat have changes in how connection configurations are stored.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment