Given the following three equations, assuming all unknowns are integers: $$ x y =\left(x + y - z \right) a \\ x z =\left(x + z - y \right) b \\ y z =\left(y + z - x \right) c $$
And the following constraints on the values for $x$, $y$, and $z$:
$$ 0 < z \lt x + y \\ 0 < y \lt x + z \\ 0 < x \lt y + z \\ x \ne y \\ x \ne z \\ y \ne z $$
There are no constraints on the values of $a$, $b$, and $c$ beyond that they are integers.
Is there any tractable way to find all of the sets of integer solutions that satisfy the constraints, or lacking that, a way to prove that no integer solutions for all unknowns that satisfy the constraints exist?
There certainly are integer solutions. Let $p$, $q$, $r$ be any integers satisfying the triangle inequalities and let $L$ be the least common multiple of $p+q-r$, $q+r-p$, $r+p-q$. Then $x=Lp$, $y=Lq$, $z=Lr$ will do, with $a = \dfrac{pqL}{p+q-r}$, $b = \dfrac{prL}{p+r-q}$, $c = \dfrac{qrL}{q+r-p}$, which are all integers by construction of $L$. For example, if $p=4$, $q=5$, and $r=7$, then $L=24$ so $x=96$, $y=120$, $z=168$, $a=240$, $b=112$, $c=105$