Skip to content

Instantly share code, notes, and snippets.

@SrChach
Last active February 11, 2019 19:43
Show Gist options
  • Save SrChach/15477dfe0fd1c02cb733ac5a948ea22b to your computer and use it in GitHub Desktop.
Save SrChach/15477dfe0fd1c02cb733ac5a948ea22b to your computer and use it in GitHub Desktop.
Http start/stop services
/* Inicializar servidor */
sudo systemctl start httpd.service
/* Parar servidor */
sudo systemctl stop httpd.service
/* Inicializar servicio mariadb */
sudo systemctl start mariadb.service
sudo systemctl enable mariadb.service
/* Ver status servicio mariaDB */
sudo systemctl status mariadb.service
/* Detener servicio mysql */
sudo systemctl stop mariadb.service
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment