Instalirajte Plesk na CentOS 7
Korištenje drugog sustava? Plesk je vlasnička upravljačka ploča web hosta koja omogućuje korisnicima da administriraju svoje osobne i/ili klijentske web stranice, baze podataka
LUKS (Linux Unified Key Setup) jedan je od različitih formata za šifriranje diska dostupnih za Linux koji je agnostičan platformi. Ovaj vodič će vam pružiti root i swap particije unutar LVM (Linux Volume Manager) volumena koji se nalazi unutar šifrirane LUKS particije. Ovaj vodič vam također omogućuje daljinsko otključavanje LUKS particije pomoću pojednostavljenog demona SSH poslužitelja koristeći bilo koji kompatibilni SSH klijentski program.
Na stranici Deploy Servers učinite sljedeće:
Server Location
odjeljku.CentOS7
ispod ISO Library
kartice Server Type
odjeljka.Server Size
odjeljku.Deploy Now
gumb.Koristite View Console
opciju za pristup VPS instanci putem noVNC konzole.
Odaberite Install CentOS Linux 7
opciju.
Pritisnite Tab
tipku.
Unesite text
nakon vmlinuz initrd=initrd.img inst.stage2=hd:LABEL=CentOS\x207\x20\86_64 quiet
tako da izgleda ovako vmlinuz initrd=initrd.img inst.stage2=hd:LABEL=CentOS\x207\x20\86_64 quiet text
i pritisnite Enter
tipku.
VPS će se sada pokrenuti u tekstualnom modu za instalaciju CentOS-a. Vidjet ćete zaslon u noVNC konzoli kao što je prikazano na slici ispod.
Upotrijebite Alt + Right Arrow Key
kombinaciju za navigaciju do TTY2 konzole za upisivanje naredbi u naredbeni redak.
Upišite sljedeće naredbe u nastavku kako biste stvorili particiju koja će sadržavati GRUB2 pokretački program, nešifriranu /boot
particiju i primarnu particiju koja će sadržavati LUKS particiju.
parted -a opt -s /dev/vda mklabel gpt
parted -s /dev/vda unit mb
parted -s /dev/vda mkpart primary 1 3
parted -s /dev/vda name 1 grub
parted -s /dev/vda set 1 bios_grub on
parted -s /dev/vda mkpart primary 3 259
parted -s /dev/vda name 2 boot
parted -s /dev/vda mkpart primary 259 100%
parted -s /dev/vda name 3 root
Upišite sljedeću naredbu za prikaz rasporeda particije.
parted -s /dev/vda print
Zatim popunite imenovanu rootfs
particiju pseudo-slučajnim podacima. Ovo će trajati nešto više od pola sata.
dd if=/dev/urandom of=/dev/vda3 bs=1M status=progress
Na CentOS-u 7 cryptsetup
naredbe koriste zadanu šifru od aes-xts-plain64
, zadanu veličinu ključa od 256 bita i zadani hash SHA1. Umjesto toga, LUKS particija će biti kreirana sa sigurnijom Serpent šifrom, s veličinom ključa od 512 bita i s Whirlpool hashom.
cryptsetup luksFormat /dev/vda3 -c serpent-xts-plain64 -h whirlpool -s 512
Unesite odgovore, kada se od vas zatraži sljedeći upiti, a zatim pritisnite Enter
tipku:
YES
strong-password
strong-password
Upozorenje Ovo će omogućiti root prijavu i kopiranje bez upita za lozinku. Ubijte ovaj SSH poslužitelj nakon što dohvatite /tmp/luks-header-backup.img
datoteku.
Radi sigurnog čuvanja, spremite kopiju zaglavlja LUKS particije. To osigurava da ako je zaglavlje vaše LUKS particije na neki način oštećeno, može se vratiti. Ako je zaglavlje oštećeno bez ispravne sigurnosne kopije, vaši su podaci zauvijek izgubljeni.
cryptsetup luksHeaderBackup /dev/vda3 --header-backup-file /tmp/luks-header-backup.img
Za kopiranje /tmp/luks-header-backup.img
datoteke s poslužitelja, SSH poslužitelj mora biti privremeno pokrenut, koristeći izvršnu datoteku sigurne kopije scp
na klijentskom hostu, kako bi je dohvatio.
Upišite sljedeću naredbu u nastavku da biste generirali SSH host ključeve.
sshd-keygen
Upišite sljedeću naredbu u nastavku da biste stvorili /etc/ssh/sshd_config
datoteku.
cp /etc/ssh/sshd_config.anaconda /etc/ssh/sshd_config
Upišite sljedeću naredbu u nastavku da biste uredili /etc/ssh/sshd_config
datoteku.
vi /etc/ssh/sshd_config
Da biste uredili datoteku, pritisnite Insert
tipku i koristite tipke sa strelicama za navigaciju do dijelova datoteke koje je potrebno urediti.
U prvom redu promijenite broj Port 22
iz zadanog od 22
u nasumični broj po svom izboru između 1025
i 65535
. (Primjer: port 25782
)
Pomaknite se prema dolje do retka broj trinaest, pritisnite End
tipku i pritisnite Enter
tipku.
U sljedećem retku dodajte HostKey /etc/ssh/ssh_host_ed25519_key
i pritisnite Enter
tipku.
U sljedećem retku dodajte HostKey /etc/ssh/ssh_host_rsa_key
i pritisnite Enter
tipku.
Pritisnite Esc
tipku, upišite :wq
i pritisnite Enter
tipku za spremanje datoteke.
Zadano mrežno sučelje eth0
treba IP adresu. Upišite sljedeću naredbu u nastavku da eth0
mrežnom sučelju dodijelite IP adresu navedenu za vašu instancu .
dhclient
Unesite sljedeću naredbu za prikaz dodijeljene IP adrese. IP adresa će biti navedena odmah nakon inet
i prije netmask
. (Primjer: inet 192.0.2.1
mrežna maska)
ifconfig eth0
Upišite sljedeću naredbu za pokretanje SSH poslužitelja.
/usr/sbin/sshd
Ako koristite scp
naredbu iz naredbenog retka na klijentskom stroju, upotrijebite sljedeću naredbu u nastavku kao predložak za dohvaćanje /tmp/luks-header-backup.img
datoteke. Zamijenite 25782
stvarnim brojem porta dodijeljenim u /etc/ssh/sshd_config
. Zamijenite 192.0.2.1
stvarnom dodijeljenom IP adresom.
scp -P 25782 [email protected]:/tmp/luks-header-backup.img .
Nakon preuzimanja luks-header-backup.img
datoteke, odmah ugasite SSH poslužitelj upisivanjem naredbe ispod u prozor konzole noVNC.
killall sshd
Otvorite LUKS particiju kako biste postavili LVM fizički volumen koji će se nalaziti unutra.
cryptsetup luksOpen /dev/vda3 centos
Unesite šifru kreiranu ranije da otvorite LUKS particiju kada se to od vas zatraži, a zatim pritisnite Enter
tipku.
Unesite šifru za /dev/vda3
:strong-password
Upišite sljedeću naredbu u nastavku:
ls /dev/mapper
Ona će sadržavati sljedeće datoteke pod nazivom centos
, control
, live-base
i live-rw
. To centos
je LUKS particija.
Upišite sljedeću naredbu u nastavku da biste stvorili LVM fizički volumen.
pvcreate /dev/mapper/centos
Kada bude uspješan, dobit ćete sljedeću poruku:
Physical volume "/dev/mapper/centos" successfully created
Upišite sljedeću naredbu u nastavku da biste stvorili LVM grupu volumena.
vgcreate ssd /dev/mapper/centos
Kada bude uspješan, dobit ćete sljedeću poruku:
Volume group "ssd" successfully created
Upišite sljedeću naredbu u nastavku da biste stvorili LVM logički volumen za swap particiju. Upotrijebite razumnu procjenu kako biste stvorili swap particiju, potrebne veličine (-L = veličina volumena), na temelju vaše VPS instance.
lvcreate -L 1G -n swap ssd
Kada bude uspješan, dobit ćete sljedeću poruku:
Logical volume "swap" created
Type the following command below to create a LVM logical volume for the root partition. This will use the remaining free space while reserving five percent (5%) to contain LVM snapshots of your logical volumes if you so choose.
lvcreate -l 95%FREE -n root ssd
When successful, you will receive the following message:
Logical volume "root" created
Display the LVM physical volume.
pvdisplay
You will see text in the noVNC console similar to what is pictured in the image below.
Display the LVM volume group.
vgdisplay
You will see text in the noVNC console similar to what is pictured in the image below.
Display the LVM logical volume(s).
lvdisplay
You will see text in the noVNC console similar to what is pictured in the image below.
Type the following command below to deactivate the LVM volume group. This must be completed in order to allow cryptsetup
to close the LUKS partition in the next step.
vgchange -a n
When successful, you will receive the following message:
0 logical volume(s) in volume group "ssd" now active
Close the LUKS volume.
cryptsetup luksClose centos
Type the following command below:
ls /dev/mapper
It will contain the following files named control
, live-base
and live-rw
. The centos
file, containing the LUKS partition, will be missing to ensure that that it was closed properly.
Type reboot
and press the Enter
key to reboot.
Select the Install CentOS Linux 7
option and press the Enter
key.
The VPS will now boot into the GUI mode CentOS installer. You will see a screen in the noVNC console like pictured in the image below. Select Install CentOS 7
(1) and press the Enter
key.
On the WELCOME TO CENTOS 7
screen, click the blue Continue
button (1).
Attention If you're not using the default language of English and the locale of the United States, input your language in the search bar (1). Click on the language (2) and the appropriate locale (3) associated with it. When satisfied, click the blue Continue
button (4).
On the INSTALLATION SUMMARY
screen, click on INSTALLATION DESTINATION (Automatic partitioning selected)
(1) under SYSTEM
.
On the INSTALLATION DESTINATION
screen, select the I will configure partitioning
(1) option under Other Storage Options (Partitioning)
and click the blue Done
button (2) at the top left of the screen.
On the MANUAL PARTITIONING
screen, click on the Unknown
expandable accordion (1). It will reveal three partitions named BIOS Boot (vda1)
, Unknown (vda2)
and Encrypted (LUKS) (vda3)
.
With the BIOS Boot
partition highlighted in blue (1), select the checkbox option of Reformat
(2) next to the File System:
accordion and click the Update Settings
button (3).
Click on the Unknown
partition (1) so that it is highlighted in blue. Select the checkbox option of Reformat
(2) next to the File System:
accordion. Select ext2
in the File System:
accordion (3), enter /boot
in the text field (4) under Mount Point:
, enter boot
in the text field (5) under Label:
and click the Update Settings
button (6).
Click on the Encrypted (LUKS)
partition (1) so that it is highlighted in blue. Enter the passphrase you created for LUKS partition in Step 3: Setup LVM On LUKS Full Disk Encryption
in the Passphrase:
text field (2) and click the Unlock
button (3).
A new Unknown
expandable accordion (1) will appear. It will reveal two partitions named Unknown (ssd-root)
and Unknown (ssd-swap)
.
With the Unknown (ssd-root)
partition (1) highlighted in blue, select the checkbox option of Reformat
(2) next to the File System:
accordion. Select xfs
in the File System:
accordion (3), enter /
in the text field (4) under Mount Point:
, enter root
in the text field (5) under Label:
and click the Update Settings
button (6).
Click on the Unknown (ssd-swap)
(1) partition so that it is highlighted in blue. Select the checkbox option of Reformat
(2) next to the File System:
accordion. Select swap
in the File System:
accordion (3), enter swap
in the text field (4) under Label:
and click the Update Settings
button (5).
Click the blue Done
button (1) at the top left of the screen.
A box named SUMMARY OF CHANGES
will pop up. Click the Accept Changes
button (1). This will bring you back to the WELCOME TO CENTOS 7
screen.
Click on NETWORK & HOST NAME (Not connected)
(1) under SYSTEM
.
On the NETWORK & HOST NAME
screen, move the slider (1), next to the right of Ethernet(eth0)
field, from the OFF
position to the ON
position. If you want to use a custom hostname instead of the default (192.0.2.1.vultr.com) in the Host name:
text box (2), change it. Click the blue Done
button (3) at the top left of the screen. This will bring you back to the WELCOME TO CENTOS 7
screen.
When you are satisfied with the options on the WELCOME TO CENTOS 7
screen, click the blue Begin Installation
button (1).
On the CONFIGURATION
screen, click on ROOT PASSWORD (Root password is not set)
(1) under USER SETTINGS
.
On the ROOT PASSWORD
screen, enter a strong password in both the Root Password:
(1) and Confirm:
(2) text fields. Click the blue Done
button (3) at the top left of the screen. This will bring you back to the CONFIGURATION
screen.
On the CONFIGURATION
screen, click on USER CREATION (No user will be created)
(1) under USER SETTINGS
.
On the CREATE USER
screen, enter your full name in the Full name
text field (1), an username in the User name
text field (2), a strong password in both the Password
(3) and Confirm password
(4) text fields. Click on the Advanced...
button (5).
A box named ADVANCED USER CONFIGURATION
will pop up. In the Add user to the following groups:
text field (1) under Group Membership
, enter wheel
and click the Save Changes
button (2).
Click the blue Done
button (1) at the top left of the screen.
The post-installation process will now commence. It will take a few minutes to complete. When it is finished, click on the blue Reboot
button (1) to reboot your VPS instance.
Navigate back to the VULTR Server Management Screen. Click on the Settings
link at the top. Click on Custom ISO
on the menu on the left side. On the Custom ISO
page, click on the Remove ISO
button to unmount the ISO and reboot into your CentOS 7 VPS instance. Click the OK
button when prompted and the VPS instance will reboot.
Navigate back to the View Console
window to access the VPS instance via the noVNC console. Refresh the window if noVNC has disconnected.
You will be prompted to enter the passphrase (Example: Please enter passphrase for disk primary (luks-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx)!:
) you created for LUKS partition in Step 3: Setup LVM On LUKS Full Disk Encryption
. Enter the passphrase and press the Enter
key.
You will then be presented with the console login prompt. You can now close the noVNC console window.
Log in via SSH with a regular user and update the system as follows.
sudo yum install epel-release -y
sudo yum clean all && sudo yum update -y
While still logged in as a regular user, type the following commands below to install dracut-crypt-ssh
.
sudo yum install wget -y
sudo wget -O /etc/yum.repos.d/rbu-dracut-crypt-ssh-epel-7.repo https://copr.fedorainfracloud.org/coprs/rbu/dracut-crypt-ssh/repo/epel-7/rbu-dracut-crypt-ssh-epel-7.repo
sudo yum install dracut-crypt-ssh -y
Type the following command below to install the nano
editor to ease editing of files.
sudo yum install nano -y
You will need to edit the default grub file located in /etc/default/grub
.
sudo nano /etc/default/grub
Insert rd.neednet=1 ip=dhcp
between GRUB_CMDLINE_LINUX="crashkernel=auto
and rd.luks.uuid=luks-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
.
Save the file by entering the following keyboard combinations. Press the Ctrl
+ x
keys, press the y
key and press the Enter
key.
Regenerate you GRUB configuration file by type the command below.
sudo grub2-mkconfig -o /etc/grub2.cfg
Backup the original /etc/dracut.conf.d/crypt-ssh.conf
by typing the following command below.
sudo mv /etc/dracut.conf.d/crypt-ssh.conf /etc/dracut.conf.d/crypt-ssh.conf.orig
Create a new /etc/dracut.conf.d/crypt-ssh.conf
file by typing the following command below.
sudo nano /etc/dracut.conf.d/crypt-ssh.conf
Copy and paste the following text below into the nano
editor.
dropbear_acl="/etc/dropbear/keys/authorized_keys"
dropbear_ecdsa_key="/etc/dropbear/keys/ssh_ecdsa_key"
dropbear_rsa_key="/etc/dropbear/keys/ssh_rsa_key"
Create the directory keys
under /etc/dropbear/
, with the necessary directory permissions, that will hold the authorized_keys
, ssh_ecdsa_key
and ssh_rsa_key
files.
sudo mkdir /etc/dropbear/keys/; sudo chmod /etc/dropbear/keys/
Generate the ssh_ecdsa_key
and ssh_rsa_key
files with the ssh_keygen
program by typing the following commands below. Press the Enter
key twice, for each command, when prompted for passphrases.
sudo ssh-keygen -t ecdsa -f /etc/dropbear/keys/ssh_ecdsa_key
sudo ssh-keygen -t rsa -f /etc/dropbear/keys/ssh_rsa_key
Change the file permissions on ssh_ecdsa_key
, ssh_ecdsa_key.pub
, ssh_rsa_key
and ssh_rsa_key.pub
by typing the command below.
sudo chmod 400 /etc/dropbear/keys/*_key; sudo chmod 444 /etc/dropbear/keys/*.pub
Generate public keys using the How Do I Generate SSH Keys?
tutorial, found at the beginning of the tutorial under Prerequisites
, for your prospective client operating system.
Copy and paste all the text in the public key into the /etc/dropbear/keys/authorized_keys
file using the nano
program by typing the command below.
sudo nano /etc/dropbear/keys/authorized_keys
You must first build the initramfs and any subsequent update of the dracut-crypt-ssh configuration. Type the following command below for the initial build of the initramfs.
sudo dracut -f
Once that's complete, your CentOS 7 install is set up to listen for your SSH client to connect and allow you to unlock the LUKS partition using your passphrase. You may now reboot your CentOS 7 instance by typing the command below.
sudo reboot
Na vašim klijentskim sustavima pogledajte odjeljke 3.3. Unlocking the volumes interactively
i 3.4. Unlocking using the
otključajte command
stranicu Dracut-Crypt-SSH GitHub kako biste prisilili upit za lozinku ili upotrijebili unlock
naredbu za otvaranje LUKS particije sa vašeg SSH klijenta.
Korištenje drugog sustava? Plesk je vlasnička upravljačka ploča web hosta koja omogućuje korisnicima da administriraju svoje osobne i/ili klijentske web stranice, baze podataka
Squid je popularan besplatni program za Linux koji vam omogućuje stvaranje web proxyja za prosljeđivanje. U ovom vodiču vidjet ćete kako instalirati Squid na CentOS da vas preokrene
Uvod Lighttpd je fork Apachea koji ima za cilj da bude puno manje intenzivan prema resursima. Lagan je, otuda mu i naziv, i prilično je jednostavan za korištenje. Instaliraj
VULTR je nedavno napravio promjene na svojoj strani i sada bi sve trebalo raditi dobro iz kutije s omogućenim NetworkManagerom. Želite li onemogućiti
Icinga2 je moćan sustav nadzora, a kada se koristi u modelu master-client, može zamijeniti potrebu za provjerama praćenja na temelju NRPE. Glavni klijent
Korištenje drugog sustava? Apache Cassandra je besplatni i otvorenog koda NoSQL sustav upravljanja bazom podataka koji je osmišljen kako bi osigurao skalabilnost, visoku
Korištenje drugog sustava? Microweber je CMS i internetska trgovina otvorenog koda povuci i ispusti. Izvorni kod Microwebera nalazi se na GitHubu. Ovaj vodič će vam pokazati
Korištenje drugog sustava? Mattermost je open source alternativa Slack SAAS servisu za razmjenu poruka. Drugim riječima, s Mattermostom možete ca
Što vam treba Vultr VPS s najmanje 1 GB RAM-a. SSH pristup (s root/administrativnim privilegijama). Korak 1: Instalacija BungeeCord-a Najprije
Upravljačka ploča Plesk ima vrlo lijepu integraciju za Lets Encrypt. Lets Encrypt je jedan od jedinih SSL pružatelja usluga koji u potpunosti izdaju certifikate
Lets Encrypt je tijelo za izdavanje certifikata posvećeno besplatnom pružanju SSL certifikata. cPanel je izgradio urednu integraciju tako da vi i vaš klijent
Korištenje drugog sustava? Concrete5 je CMS otvorenog koda koji nudi mnoge osebujne i korisne značajke koje pomažu urednicima u jednostavnoj proizvodnji sadržaja i
Korištenje drugog sustava? Review Board je besplatan alat otvorenog koda za pregled izvornog koda, dokumentacije, slika i još mnogo toga. To je web-bazirani softver
U ovom vodiču naučit ćete kako postaviti HTTP autentifikaciju za Nginx web poslužitelj koji radi na CentOS 7. Zahtjevi Da biste započeli, trebat će vam
YOURLS (Your Own URL Shortener) je aplikacija za skraćivanje URL-ova otvorenog koda i analizu podataka. U ovom članku ćemo pokriti proces instalacije
Korištenje drugog sustava? Uvod ArangoDB je NoSQL baza podataka otvorenog koda s fleksibilnim modelom podataka za dokumente, grafikone i ključ-vrijednosti. to je
Uvod Direktorij /etc/ igra ključnu ulogu u načinu na koji Linux sustav funkcionira. Razlog tome je što je gotovo svaka konfiguracija sustava
Mnogi administratori sustava upravljaju velikim količinama poslužitelja. Kada se datotekama treba pristupiti na različitim poslužiteljima, prijava na svaki pojedinačno ca
Ovaj vodič će pokriti proces instaliranja poslužitelja za igre Half Life 2 na sustavu CentOS 6. Korak 1: Instaliranje preduvjeta Kako biste postavili ou
Laravel GitScrum ili GitScrum je alat za produktivnost otvorenog koda dizajniran da pomogne razvojnim timovima da implementiraju Scrum metodologiju na sličan način.
Umjetna inteligencija nije u budućnosti, ovdje je upravo u sadašnjosti. U ovom blogu Pročitajte kako su aplikacije umjetne inteligencije utjecale na različite sektore.
Jeste li i vi žrtva DDOS napada i zbunjeni ste metodama prevencije? Pročitajte ovaj članak kako biste riješili svoje upite.
Možda ste čuli da hakeri zarađuju mnogo novca, ali jeste li se ikada zapitali kako zarađuju toliki novac? raspravimo.
Želite li vidjeti revolucionarne izume Googlea i kako su ti izumi promijenili život svakog čovjeka danas? Zatim čitajte na blogu kako biste vidjeli Googleove izume.
Koncept samovozećih automobila koji će krenuti na ceste uz pomoć umjetne inteligencije san je koji već neko vrijeme imamo. No, unatoč nekoliko obećanja, nigdje ih nema. Pročitajte ovaj blog kako biste saznali više…
Kako se znanost razvija velikom brzinom, preuzimajući mnoge naše napore, raste i rizik da se podvrgnemo neobjašnjivoj Singularnosti. Pročitajte što bi za nas mogla značiti singularnost.
Metode pohrane podataka su se razvijale možda od rođenja podataka. Ovaj blog pokriva evoluciju pohrane podataka na temelju infografike.
Pročitajte blog kako biste na najjednostavniji način upoznali različite slojeve u arhitekturi velikih podataka i njihove funkcionalnosti.
U ovom digitalnom svijetu, pametni kućni uređaji postali su ključni dio života. Evo nekoliko nevjerojatnih prednosti pametnih kućnih uređaja o tome kako naš život čine vrijednim življenja i jednostavnijim.
Nedavno je Apple izdao macOS Catalina 10.15.4 dodatak ažuriranju kako bi riješio probleme, ali čini se da ažuriranje uzrokuje više problema koji dovode do zalijevanja mac strojeva. Pročitajte ovaj članak da biste saznali više