Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
I Get An Error
bossman759@ubuntu:~$ sudo service apache2 reload Syntax error on line 173 of /etc/apache2/sites-enabled/default-ssl: SSLCertificateKeyFile: file ‘/etc/apache2/ssl/apache.ke’ does not exist or is empty Action ‘configtest’ failed. The Apache error log may have more information. …fail!
Maybe a small typo, the error lists: “/etc/apache2/ssl/apache.ke”
The tutorial is for: “/etc/apache2/ssl/apache.key”
So the key file you are pointing doesn’t exist, just looks like you missed the y on the end.
Double check the paths to make sure all of the files you are referencing are where they are supposed to be and if you still have an issue let us know.
You hava a mistake when you typed the location of your “apache.key” file. If you read the location of the error message, you can see that the file you typed was “/etc/apache2/ssl/apache.ke”
How about this?
Syntax error on line 47 of /etc/apache2/sites-enabled/default-ssl: SSLCertificateFile: file ‘/etc/apache2/ssl/apache.crt’ does not exist or is empty Action ‘configtest’ failed. The Apache error log may have more information. …fail!
The error is the file does not exist or is empty, make sure you put your Apache certificate file in place /etc/apache2/ssl/apache.crt
You can verify that its the right file by running: cat /etc/apache2/ssl/apache.crt – that will show you the contents of the certificate file.
Thanks! Let me know if you there are any topics you would like to see. =]
Great walk-through, bookmarking this. This is the most clear and concise explanation that I have found yet. THANK YOU!