Very grateful to you, your reply to solve my confusion!


[email protected]
 
From: Lance Richardson
Date: 2017-05-10 20:45
To: ych
CC: ovs-discuss
Subject: Re: [ovs-discuss] SSL error
> From: [email protected]
> To: "ovs-discuss" <[email protected]>
> Sent: Wednesday, 10 May, 2017 5:05:36 AM
> Subject: [ovs-discuss] SSL error
> 
> Hi everyone,
> After install openvswitch-2.6.1, prompt SSL error, Does anyone know what
> reason is this?
> 
> root@ubuntu:/home/ych/openvswitch-2.6.1# ./boot.sh
> root@ubuntu:/home/ych/openvswitch-2.6.1# ./configure
> --with-linux=/lib/modules/$(uname -r)/build
> root@ubuntu:/home/ych/openvswitch-2.6.1# make
> root@ubuntu:/home/ych/openvswitch-2.6.1# make install
> root@ubuntu:/home/ych/openvswitch-2.6.1# make modules_install
> =====================================================================================================================
> root@ubuntu:/home/ych/openvswitch-2.6.1# sudo make modules_install
> cd datapath/linux && make modules_install
> make[1]: Entering directory '/home/ych/openvswitch-2.6.1/datapath/linux'
> make -C /lib/modules/4.4.0-75-generic/build
> M=/home/ych/openvswitch-2.6.1/datapath/linux modules_install
> make[2]: Entering directory '/usr/src/linux-headers-4.4.0-75-generic'
> INSTALL /home/ych/openvswitch-2.6.1/datapath/linux/openvswitch.ko
> At main.c:222:
> - SSL error:02001002:system library:fopen:No such file or directory:
> bss_file.c:175
> - SSL error:2006D080:BIO routines:BIO_new_file:no such file: bss_file.c:178
> sign-file: certs/signing_key.pem: No such file or directory
> INSTALL /home/ych/openvswitch-2.6.1/datapath/linux/vport-geneve.ko
> At main.c:222:
> - SSL error:02001002:system library:fopen:No such file or directory:
> bss_file.c:175
> - SSL error:2006D080:BIO routines:BIO_new_file:no such file: bss_file.c:178
> sign-file: certs/signing_key.pem: No such file or directory
> INSTALL /home/ych/openvswitch-2.6.1/datapath/linux/vport-gre.ko
> At main.c:222:
> - SSL error:02001002:system library:fopen:No such file or directory:
> bss_file.c:175
> - SSL error:2006D080:BIO routines:BIO_new_file:no such file: bss_file.c:178
> sign-file: certs/signing_key.pem: No such file or directory
> INSTALL /home/ych/openvswitch-2.6.1/datapath/linux/vport-lisp.ko
> At main.c:222:
> - SSL error:02001002:system library:fopen:No such file or directory:
> bss_file.c:175
> - SSL error:2006D080:BIO routines:BIO_new_file:no such file: bss_file.c:178
> sign-file: certs/signing_key.pem: No such file or directory
> INSTALL /home/ych/openvswitch-2.6.1/datapath/linux/vport-stt.ko
> At main.c:222:
> - SSL error:02001002:system library:fopen:No such file or directory:
> bss_file.c:175
> - SSL error:2006D080:BIO routines:BIO_new_file:no such file: bss_file.c:178
> sign-file: certs/signing_key.pem: No such file or directory
> INSTALL /home/ych/openvswitch-2.6.1/datapath/linux/vport-vxlan.ko
> At main.c:222:
> - SSL error:02001002:system library:fopen:No such file or directory:
> bss_file.c:175
> - SSL error:2006D080:BIO routines:BIO_new_file:no such file: bss_file.c:178
> sign-file: certs/signing_key.pem: No such file or directory
> DEPMOD 4.4.0-75-generic
> make[2]: Leaving directory '/usr/src/linux-headers-4.4.0-75-generic'
> depmod `sed -n 's/#define UTS_RELEASE "\([^"]*\)"/\1/p'
> /lib/modules/4.4.0-75-generic/build/include/generated/utsrelease.h`
> make[1]: Leaving directory '/home/ych/openvswitch-2.6.1/datapath/linux'
> 
> 
> 
> Best wishes!
> 
> 
> [email protected]
> 
 
It seems your kernel is configured with CONFIG_MODULE_SIG=y, so "make
modules_install" is attempting to add a signature to each kernel module,
but this is failing because the signing key certificate is not present.
The signing key certificate is most often created as part of the base
kernel build, and not included in distribution packages (for obvious
reasons!), so I suspect this is a common situation.
 
Based on looking at the kernel makefiles, this won't be treated as a
fatal error and in fact from your "make modules_install" output it
looks like it completed successfully.
 
I think these errors can safely be ignored.
 
Regards,
 
   Lance Richardson
_______________________________________________
discuss mailing list
[email protected]
https://mail.openvswitch.org/mailman/listinfo/ovs-discuss

Reply via email to