Elastic License 2.0 (ELv2)

The Elastic License 2.0 (ELv2) is a non-copyleft "Source Available" license created by Elastic (the company behind Elasticsearch). It is NOT an Open Source license by the OSI definition. It was designed to protect software creators from "SaaS-jacking" by large cloud providers while keep...

🛡️ RISK BADGE: 🔴 RESTRICTIVE (Source Available)

Executive Summary: What is it?

The Elastic License 2.0 (ELv2) is a non-copyleft "Source Available" license created by Elastic (the company behind Elasticsearch). It is NOT an Open Source license by the OSI definition. It was designed to protect software creators from "SaaS-jacking" by large cloud providers while keeping the software free for the vast majority of users.

CFO / Business Impact: What does it cost/risk?

Safe for Internal Ops. For almost every enterprise, ELv2 is a "free" license. You can use it, modify it, and run it for your own business without cost. The SaaS Restriction: You cannot host the software as a managed service for third parties. If you are an MSP or Cloud Provider, you cannot sell "InvoiceNinja-as-a-Service" using the ELv2 version. Watermark Costs: In tools like InvoiceNinja, a "White Label" fee may still apply to remove brand watermarks, which is a commercial term outside the base license.

Technical Reality: How does it work?

The ELv2 is intentionally simple, consisting of only three primary restrictions:

  1. No Sublicensing: You cannot rent or lease the software.
  2. No SaaS Provisioning: You cannot provide the software as a service where users have access to the primary functionality of the software.
  3. No Circumvention: You cannot remove or bypass license keys or protection mechanisms. Unlike AGPL, it does not require you to open-source your modifications.

Similar Alternatives

MIT License

The MIT License is the most permissive and popular open-source license. It allows you to use, copy, modify, merge, publish, distribute, sublicense, and sell the software. The only requirement is that you include the original copyright notice in your copy.

Apache License 2.0

The Apache 2.0 is a modern permissive license favored by large enterprises (Google, Android, Kubernetes). Like MIT, it allows full commercial use. Crucially, it includes an explicit patent grant, protecting you from patent lawsuits from the contributors.

BSD 3-Clause License

The BSD 3-Clause License (also known as "New BSD" or "Modified BSD") is a permissive free software license. It is very similar to the MIT License, allowing you to use, modify, and distribute the software for any purpose. The key difference is an added clause that prohibits using the nam...

GNU LGPL v3

The LGPL (Lesser General Public License) is a compromise between the permissive Apache/MIT and the strict GPL. It allows you to link your proprietary software to an LGPL library (dynamically) without forcing your proprietary code to become open source. However, if you modify the LGPL li...