“SQLite Could Not Be Found Issue” that you see when running AWR on 64bit Linux(in my case Ubuntu 10.04 ) is caused by the fact that AWR relies on 32bit JRE(you can read about this on AWR’s forum). Problem could be fixed by installing 32bit JRE on the system.This short step by step guide cheat sheet will help:
If you’re on earlier version of Ubuntu this will generally do the trick:
sudo apt-get install ia32-sun-java6-bin
However if you’re on 10.04, then it’s a bit longer process, since you need to add partner repository first:
sudo add-apt-repository "deb http://archive.canonical.com/ lucid partner"
sudo apt-get install ia32-sun-java6-bin
That’s not all though. Now you need to edit launch script(AdvancedWebRanking.sh). Line #4 needs to be updated to contain path to proper JRE. Your final file should look something like:
#!/bin/sh
cd "Advanced Web Ranking"
export LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH
/usr/lib/jvm/ia32-java-6-sun/bin/java -Xmx512M -classpath awr.jar com.caphyon.awebrank.Splash
Thanks for this post, it saved me much hair pulling.
I just upgraded Ubuntu and AWR stopped working. That could have taken many hours to solve, but your post fixed it in just moments.
Thanks!
Thx for this, it saves me a lot of time!