I have 12c setup on OEL 6.7 on OVM and while trying to access EM express, I was receiving the error
Just for the notes, a user can log into EM Express using URL
https://<hostname>:<port>/em
and port details can be found using
lsnrctl status | grep HTTP or select dbms_xdb_config.getHttpsPort() from dual;
Clicking on the “Get Flash” takes you to abode flash page from where you can download the rpm for flash.
[root@oel67-12c Downloads]# ls -lrt -rw-r--r-- 1 root root 7270732 May 30 11:43 flash-plugin-11.2.202.621-release.x86_64.rpm [root@oel67-12c Downloads]# [root@oel67-12c Downloads]# rpm -ivh flash-plugin-11.2.202.621-release.x86_64.rpm Preparing... ########################################### [100%] 1:flash-plugin ########################################### [100%] [root@oel67-12c Downloads]#
After installing the rpm I still received the same error.So lets debug
[root@oel67-12c Downloads]# cd /usr/lib64/mozilla/plugins/ [root@oel67-12c plugins]# ls -lrth total 368K -rwxr-xr-x. 1 root root 5.2K Jul 25 2010 librhythmbox-itms-detection-plugin.so -rwxr-xr-x. 1 root root 78K Oct 28 2013 libtotem-narrowspace-plugin.so -rwxr-xr-x. 1 root root 70K Oct 28 2013 libtotem-mully-plugin.so -rwxr-xr-x. 1 root root 105K Oct 28 2013 libtotem-gmp-plugin.so -rwxr-xr-x. 1 root root 97K Oct 28 2013 libtotem-cone-plugin.so lrwxrwxrwx 1 root root 41 May 30 11:43 libflashplayer.so -> /usr/lib64/flash-plugin/libflashplayer.so [root@oel67-12c plugins]# ls -lrt /usr/lib64/flash-plugin/libflashplayer.so -rwxr-xr-x 1 root root 0 Apr 26 20:10 /usr/lib64/flash-plugin/libflashplayer.so
A zero byte file, something is wrong!!! I downloaded the .tar.gz version of the file from adobe and after untar
[root@oel67-12c Downloads]# ls -lrt total 48064 drwxr-xr-x 6 1001 1001 4096 Apr 26 20:10 usr -r--r--r-- 1 1001 1001 4009 Apr 26 20:10 readme.txt -rw-r--r-- 1 1001 1001 19314752 Apr 26 20:10 libflashplayer.so drwxr-xr-x 2 1001 1001 4096 Apr 26 20:10 LGPL -rw-r--r-- 1 root root 7270732 May 30 11:43 flash-plugin-11.2.202.621-release.x86_64.rpm -rw-r--r-- 1 root root 20408320 May 30 11:51 install_flash_player_11_linux.x86_64.tar
Hmmm, so the file is ~18MB. Lets copy the file to /usr/lib64/mozilla/plugins/ and change the permissions
[root@oel67-12c plugins]# cp -p /root/Downloads/libflashplayer.so . [root@oel67-12c plugins]# ls -lrt total 19232 -rwxr-xr-x. 1 root root 5264 Jul 25 2010 librhythmbox-itms-detection-plugin.so -rwxr-xr-x. 1 root root 79752 Oct 28 2013 libtotem-narrowspace-plugin.so -rwxr-xr-x. 1 root root 70904 Oct 28 2013 libtotem-mully-plugin.so -rwxr-xr-x. 1 root root 106984 Oct 28 2013 libtotem-gmp-plugin.so -rwxr-xr-x. 1 root root 99176 Oct 28 2013 libtotem-cone-plugin.so -rw-r--r-- 1 1001 1001 19314752 Apr 26 20:10 libflashplayer.so [root@oel67-12c plugins]# chown root:root libflashplayer.so [root@oel67-12c plugins]# chmod 775 libflashplayer.so
And, now lets refresh the page and there you go !!!