This repository has been archived by the owner on Jun 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservicios.sh
executable file
·135 lines (116 loc) · 2.53 KB
/
servicios.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#!/bin/bash
clear
continuar=0
while [ $continuar -eq 0 ]
do
op1=0
op=0
read -p "Selecciona una opción
1) Iniciar
2) Detener
3) Reiniciar
4) Comprobar estado de servicios
5) Menú principal :" op1
if [ $op1 -eq 1 ]
then
read -p "Selecciona que servicios quieres iniciar
1) Web (Apache)
2) FTP
3) MySQL :" op
if [ $op -eq 3 ]
then
sudo systemctl start mysql
sudo systemctl status mysql
echo "MySQL iniciado correctamente"
fi
if [ $op -eq 2 ]
then
sudo systemctl start vsftpd
sudo systemctl status vsftpd
echo "FTP inicado correctamente"
fi
if [ $op -eq 1 ]
then
sudo systemctl start apache2
sudo systemctl status apache2
echo "Apache inciado correctamente"
fi
fi
if [ $op1 -eq 2 ]
then
read -p "Selecciona que servicios quieres detener
1) Web (Apache)
2) FTP
3) MySQL :" op
if [ $op -eq 3 ]
then
sudo systemctl stop mysql
sudo systemctl status mysql
echo "MySQL detenido correctamente"
fi
if [ $op -eq 2 ]
then
sudo systemctl stop vsftpd
sudo systemctl status vsftpd
echo "FTP detenido correctamente"
fi
if [ $op -eq 1 ]
then
sudo systemctl stop apache2
sudo systemctl status apache2
echo "Apache detenido correctamente"
fi
fi
if [ $op1 -eq 3 ]
then
read -p "Selecciona que servicios quieres reiniciar
1) Web (Apache)
2) FTP
3) MySQL :" op
if [ $op -eq 3 ]
then
sudo systemctl restart mysql
sudo systemctl status mysql
echo "MySQL reinciado correctamente"
fi
if [ $op -eq 2 ]
then
sudo systemctl restart vsftpd
sudo systemctl status vsftpd
echo "FTP reinicado correctamente"
fi
if [ $op -eq 1 ]
then
sudo systemctl restart apache2
sudo systemctl status apache2
echo "Apache reinciado correctamente"
fi
fi
if [ $op1 -eq 4 ]
then
read -p "Selecciona que servicios quieres comprobar su estado
1) Web (Apache)
2) FTP
3) MySQL :" op
if [ $op -eq 3 ]
then
sudo systemctl status mysql
echo "MySQL reinciado correctamente"
fi
if [ $op -eq 2 ]
then
sudo systemctl status vsftpd
echo "FTP reinicado correctamente"
fi
if [ $op -eq 1 ]
then
sudo systemctl status apache2
echo "Apache reinciado correctamente"
fi
fi
if [ $op1 -eq 5 ]
then
continuar=1
./start.sh
fi
done