Add User
sudo adduser newuser sudo passwd newuser
Delete User
sudo userdel -r newuserYou can add the flag “-r” to the command if you would like to simultaneously remove the users’s home directory and files.
sudo adduser newuser sudo passwd newuser
sudo userdel -r newuserYou can add the flag “-r” to the command if you would like to simultaneously remove the users’s home directory and files.
public List<Element> findAllElements(Task task) { logger.info("Try to find elements - task: {}", task.getId()); return em.createNamedQuery(Element.FIND_ALL_BY_TASK, Element.class) .setParameter("task", task) .getResultList(); }