1
00:00:00,210 --> 00:00:07,230
We have to move our certificate file and private key into proper place, so first of all, we are going to check

2
00:00:07,230 --> 00:00:14,610
one directory ls -l /etc/pki means Public Key Infrastructure, /tls transport layer 

3
00:00:14,620 --> 00:00:16,680
security/certs.

4
00:00:17,160 --> 00:00:21,510
And here we are going to see that our localhost.cert is there.

5
00:00:22,440 --> 00:00:28,880
And then we will look at /etc/pki/tls/private.

6
00:00:29,160 --> 00:00:37,070
We will see that our localhost key that mean already created private key and the certificate files

7
00:00:37,140 --> 00:00:42,210
are in that certificate files is in this directory, and private key in this.

8
00:00:42,450 --> 00:00:47,940
So in our case, we have to move our master.key file in this.

9
00:00:47,940 --> 00:00:54,360
directory and our master.crt are in this so for that what we are going to do, we are going to use

10
00:00:54,360 --> 00:00:55,080
the move.

11
00:00:55,080 --> 00:00:57,480
Command, that mean move command.

12
00:00:57,480 --> 00:00:59,850
will shift from cureent directory to this.

13
00:01:00,030 --> 00:01:07,500
So we are moving this to which directory, we are specifying mv the name of the file.

14
00:01:07,740 --> 00:01:09,600
In our case, it is a certificate file.

15
00:01:09,840 --> 00:01:10,920
We are moving it to /etc/pki.

16
00:01:10,920 --> 00:01:20,070
/tls/certs and we are moving master.key into which directory /etc/pki/tls/private key then

17
00:01:20,070 --> 00:01:20,910
with ls command.

18
00:01:20,910 --> 00:01:28,510
we are going to check whether our master.crt has been successfully moved or not and then with

19
00:01:28,530 --> 00:01:29,070
ls.

20
00:01:29,070 --> 00:01:30,990
/etc/pki/tls/private.

21
00:01:30,990 --> 00:01:36,060
We will see whether our master.key, we have moved it properly or not.

22
00:01:36,270 --> 00:01:42,510
So we are moving the our certificate and private key file into proper directories.
