Snakeoil Forums
[split] How to re-set activation details - Printable Version

+- Snakeoil Forums (https://forums.snakeoil-os.net)
+-- Forum: Snakeoil Topics (https://forums.snakeoil-os.net/Forum-Snakeoil-Topics)
+--- Forum: Support & Troubleshooting (https://forums.snakeoil-os.net/Forum-Support-Troubleshooting)
+--- Thread: [split] How to re-set activation details (/Thread-split-How-to-re-set-activation-details)



[split] How to re-set activation details - hkphantomgtr - 04-Apr-2025

Look, AK, may I know that...... can I "deactivate" an activated Snakeoil system (ie. removing the activation info), and then entering a new activation id & code later?  Thanks for your concern. Big Grin


RE: [split] How to re-set activation details - agent_kith - 04-Apr-2025

(04-Apr-2025, 10:13 AM)hkphantomgtr Wrote: Look, AK, may I know that...... can I "deactivate" an activated Snakeoil system (ie. removing the activation info), and then entering a new activation id & code later?  Thanks for your concern. Big Grin

Easiest way is to delete the configuration file and restart from scratch.
  1. Do a backup in case you need it.
  2. SSH into the machine & run this command
  3. Code:
    sudo rm /var/www/config/snakeoil.deb
  4. Restart API serviec (In the WebApp, under System page, click on"Restart Rest"
A more difficult way is to change the snakeoil database directly
  1. Again, do a backup just in case
  2. SSH into the machine & run this command
    Code:
    sudo sqlite3 /var/www/config/snakeoil.db

    # If you do not have the sqlite3 program, run sudo apt install sqlite3
  3. Run the following SQLite statement
    Code:
    update settings set value='' where key='rego_code';
  4. Press CTRL+D to exit sqlite
  5. Restart API service (In the WebApp, under System page, click on"Restart Rest"

I did thought about adding a button to reset the details. But figured that might cause more support issues for me so dropped that idea. That's why you can find your activation details in the dashboard page, but you cannot actually reset it.  Big Grin


RE: [split] How to re-set activation details - hkphantomgtr - 04-Apr-2025

(04-Apr-2025, 01:00 PM)agent_kith Wrote:
(04-Apr-2025, 10:13 AM)hkphantomgtr Wrote: Look, AK, may I know that...... can I "deactivate" an activated Snakeoil system (ie. removing the activation info), and then entering a new activation id & code later?  Thanks for your concern. Big Grin

Easiest way is to delete the configuration file and restart from scratch.
  1. Do a backup in case you need it.
  2. SSH into the machine & run this command
  3. Code:
    sudo rm /var/www/config/snakeoil.deb
  4. Restart API serviec (In the WebApp, under System page, click on"Restart Rest"
A more difficult way is to change the snakeoil database directly
  1. Again, do a backup just in case
  2. SSH into the machine & run this command
    Code:
    sudo sqlite3 /var/www/config/snakeoil.db

    # If you do not have the sqlite3 program, run sudo apt install sqlite3
  3. Run the following SQLite statement
    Code:
    update settings set value='' where key='rego_code';
  4. Press CTRL+D to exit sqlite
  5. Restart API service (In the WebApp, under System page, click on"Restart Rest"

I did thought about adding a button to reset the details. But figured that might cause more support issues for me so dropped that idea. That's why you can find your activation details in the dashboard page, but you cannot actually reset it.  Big Grin

Right, Thanks a lot, AK!  Shy