I installed today Oracle XE on SUSE 11 and I got this error during configuration:
Database Configuration failed. Look into /u01/app/oracle/product/11.2.0/xe/config/log for details
In the files in /u01/app/oracle/product/11.2.0/xe/config/log
there were these errors:
ORA-00119: invalid specification for system parameter LOCAL_LISTENER
ORA-00130: invalid listener address '(ADDRESS=(PROTOCOL=TCP)(HOST=linux-jbzk.site)(PORT=1521))'
The problem was on my machine the hostname was not pingeable.
Solution:
Add your current hostname (output of echo $HOSTNAME) to your /etc/hosts file
For example if your hostname is linuxbox :
127.0.0.1 linuxbox
Then you can re-run the oracle configuration:
/etc/init.d/oracle-xe configure
Source
https://community.oracle.com/
My Tips and Tricks for C#, C, C++, MatLAB, Java, LaTeX, Python and more!
Tuesday, July 26, 2016
The Most Difficult Program to Compute? Meet the Ackermann function
The Most Difficult Program to Compute?
Meet the Ackermann function. Fascinating subject :)
by Computerphile
Meet the Ackermann function. Fascinating subject :)
by Computerphile
Saturday, July 16, 2016
How to change bash prompt to red when you are root
To change your bash shell prompt to red when you became root, do the following:
- login as root
- vi ~/.bashrc
- add the this line: export PS1='\[\e[31m\][root]\[\e[0m\] \W\$'
Monday, July 11, 2016
Useful resources for code Optimization (C/C++/Assembly)
Here some references I find useful when it comes to code optimizations in C++
- A case for strlen (32 bit only!) : Just to start with a basic example!
- Some very well written guides : http://www.agner.org/optimize A must read!
Tuesday, July 5, 2016
BSD vs Linux
A really useful reading! A bit old but still highly valuable!
http://www.over-yonder.net/~fullermd/rants/bsd4linux/01
http://www.over-yonder.net/~fullermd/rants/bsd4linux/01
Subscribe to:
Posts (Atom)