btraill
 
Try this:
  
systemctl stop lshttpd
systemctl disable lshttpd
pkill -9 lshttpd
Then verify if the processes are gone:  
netstat -tulnp | grep :7080
If not, kill it manually:  
kill -9 <PID>  # Get the PID from the netstat command above
Verify again:  
netstat -tulnp | grep :7080
Once the process is gone, run these:  
systemctl reset-failed lshttpd
systemctl enable lshttpd
systemctl start lshttpd