-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlabo_troubleshooting_verslag.md~
68 lines (46 loc) · 1.83 KB
/
labo_troubleshooting_verslag.md~
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
# verslag opdracht 00 Linux
Einddoel van deze opdracht:
* een niet werkende LAMP-server troubleshooten en zo snel mogelijk terug werkende krijgen.
Met als eindresultaat dat de geheime boodschap getoont word.
# Werkwijze
## de commandos die ik (min of meer) in volgorde gebruikt heb:
sudo loadkeys be-latin1
ip a
systemctl status NetworkManager.service
sudo vi /etc/sysconfig/network-scripts/ifcfg-enp0s3 aanpassen naar:
onboot=yes
netboot=yes
bootproto=dhcp
nm_controlled=no
`sudo vi /etc/sysconfig/network-scripts/ifcfg-enp0s8` aanpassen naar:
nm_controlled=no
bootproto=static
onboot=yes
IPADDR=192.168.56.14
NETMASK=255.255.255.0
`sudo systemctl restart network.service`
`systemctl list-units --type service|grep 'httpd\|mariadb\|firewalld'`
`sudo systemctl start httpd.service`
`sudo systemctl enable httpd.service`
installeer dan mariadb en php php-mysql
voor mariadb:
`sudo yum install mariadb mariadb-server`
`sudo systemctl start mariadb`
`sudo mysql_secure_installation`
volg stappen
`sudo systemctl enable mariadb`
voor PHP
`sudo yum install php php-mysql`
`sudo systemctl restart httpd.service`
`firewall-cmd --list-all`
firewall regels instellen:
* `firewall-cmd --permanent --zone=public --add-service=http `
* `firewall-cmd --permanent --zone=public --add-service=https`
* `firewall-cmd --reload`
alles werkte maar mijn fout was dat de kabel in virtualbox niet aangesloten was.
[screenshot](http://i.imgur.com/UDGKgSo.png)
#gebruikte bronnen
Mijn eigen cheat sheets voor EL7 & checklist voor het troubleshooten van een LAMP-server:
* [checklist](https://github.com/TomRitserveldt/cheat_sheets/blob/master/bash/LAMP_troubleshoot_checklist.md)
* [EL7 cheat sheet](https://github.com/TomRitserveldt/cheat_sheets/blob/master/bash/EL7.md)
Tom Ritserveldt