Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Stop the service.

    1. On Windows this is done with the service manager. (Open the Start Menu and start typing "service")
    2. On Mac you can open a terminal and use

      Code Block
      languagebash
      titleStop Mac Service
      sudo launchctl unload /Library/LaunchDaemons/com.zerotier.one.plist

      .

    3. On Linux this is usually

      Code Block
      languagebash
      sudo systemctl stop zerotier-one

      or

      Code Block
      languagebash
      sudo service zerotier-one stop


  2. Delete the files identity.public and identity.secret from ZeroTier's working directory.

    1. On Windows this is usually "\ProgramData\ZeroTier\One".
    2. On Mac this is "/Library/Application Support/ZeroTier/One".
      1. type `open /Library/Application Support/ZeroTier/One` to open the folder in Finder.
    3. On Linux this is usually "/var/lib/zerotier-one".
  3. Restart the service

    1. starting via the service manager on Windows
    2. On Mac

      Code Block
      languagebash
      sudo launchctl load /Library/LaunchDaemons/com.zerotier.one.plist


    3. On Linux

      Code Block
      languagebash
      sudo systemctl start zerotier-one

      or

      Code Block
      languagebash
      sudo service zerotier-one start


...