Last active
February 11, 2019 19:43
-
-
Save SrChach/15477dfe0fd1c02cb733ac5a948ea22b to your computer and use it in GitHub Desktop.
Http start/stop services
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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