Hahaha... sorry... no need to throw the box out the window...
How have you setup OpenSSL? Are you using the Makefile?
You spoke above about making the cert? Unless you are talking about initializing the root CA, you don't need to make any certs. You just need to import the root-ca.pem file into the C1010, you need to generate a CSR from the C1010, sign it with the CA and then import the signed CSR back into the C1010.
Have a look
here for information on how to setup your CA on a Linux server. I created a directory in /usr/local/ca and I work from there. Assuming you have all the OpenSSL software/packages installed you should be able to just perform a "make init" to build the initial root CA. Then just place the CSR files in the directory and issue a "make sign" to sign the certificates, you can find the newly signed certificates in the same directory with a .cert designation.
Here's the command the Makefile uses to generate the root CA certificate;
# NOTE use "-newkey rsa:2048" if running OpenSSL 0.9.8a or higher
@openssl req -nodes -config openssl.cnf -days 3650 -x509 -newkey rsa:2048 -out ca-cert.pem -outform PEM
Good Luck!