#start

12 commande(s) avec le tag #start

Commandes partagées par la communauté CodeBox, copiables en un clic.

Redémarre Apache (httpd) sur CentOS/RHEL.

bash
sudo systemctl restart httpd

Démarre le service Apache2 sur Debian/Ubuntu.

bash
sudo systemctl start apache2

Démarre le serveur de développement sur localhost:4200.

bash
ng serve

Démarre l'exécution du playbook à partir d'une tâche nommée.

bash
ansible-playbook deploy.yml --start-at-task="Installer Nginx"

Démarre une instance EC2 arrêtée.

bash
aws ec2 start-instances --instance-ids i-0123456789abcdef0

Redémarre un service systemd sur tous les hôtes.

bash
ansible all -m service -a "name=nginx state=restarted" --become

Lance l'application sur le device ou émulateur connecté.

bash
flutter run

Démarre le service Apache (httpd) sur CentOS/RHEL.

bash
sudo systemctl start httpd
Flutter Hot restart

Hot restart pendant que l'app tourne (appuyer sur "R" dans le terminal).

bash
R

Redémarre Apache2 (ferme et rouvre les connexions).

bash
sudo systemctl restart apache2

Démarre l’application en mode production après un build

bash
Lancer en production
React Native Démarrer le projet

Lance le serveur de développement Expo.

bash
npx expo start