Failed to start Oracle service

I am using Linux Mint Olivia Distribution and wanted to install Oracle 11gXE, but I am facing some problems. I followed almost these steps to successfully complete the installation: Installing Oracle 11gXE on Mint and Ubuntu

But after starting the sudo service oracle-xe start I get this output:

 Starting Oracle Net Listener. Starting Oracle Database 11g Express Edition instance. Failed to start Oracle Net Listener using /u01/app/oracle/product/11.2.0/xe/bin/tnslsnr and Oracle Express Database using /u01/app/oracle/product/11.2.0/xe/bin/sqlplus. 

Any help please?

+4
source share
1 answer

I had the same problem. Have you installed libaio1 ?. If not, then

 sudo apt-get install libaio1 

should solve the problem.

+15
source

Source: https://habr.com/ru/post/1496166/


All Articles