Project-open on Fedora server - fedora

I want to install ]project open[ version 4 on fedora server.can anyone tell me what are the exact procedure/steps to install it from scratch..any help would be appreciated.

There are instructions for installing ]project-open[ 4.0 on CentOS 6, which should be quite similar: http://www.project-open.com/en/install-rhel-6. However, I'm not aware of any installation or installation request specifically on Fedora. Just make sure to use PostgreSQL 8.4 (exactly this version!). You might have to compile PG from source for this.
As an alternative you could install KVM on your Fedora system and convert ]po[ V4.0 VMware. Instructions are available for example here: https://access.redhat.com/articles/1351473

Related

HeadlessException when trying to launch/run jProfiler 9 on Fedora 24 Workstation?

I just installed a fresh copy of Fedora 24 Workstation and did a full dnf update on the entire system.
Then I installed the jProfiler rpm from the jProfiler site.
However, when I try to launch jProfiler (either from the /opt/jprofiler9/jProfiler.desktop icon or from /opt/jprofiler9/bin/jprofiler shell script), I get the following error message:
java.awt.HeadlessException
at java.awt.SplashScreen.getSplashScreen(SplashScreen.java:117)
at com.exe4j.runtime.splash.AwtSplashScreen.<init>(AwtSplashScreen.java:17)
at com.exe4j.runtime.splash.SplashEngine.setJavaSplashScreenConfig(SplashEngine.java:17)
at com.install4j.runtime.launcher.UnixLauncher.main(UnixLauncher.java:50)
I've tried setting my display using DISPLAY=0.0 or even DISPLAY=:0, but neither seem to make any difference/impact.
Any suggestions how to get this to work? I suspect it is something obvious that I am overlooking.
After a bunch of trial and error, I finally tried to install the Oracle Hotspot JRE instead of the OpenJDK JRE. I downloaded Oracle's JDK, installed it, and then configured it as the system default using:
sudo alternatives --config java
Now everything works properly with Oracle JRE.

Can anyone explain or refer a link to me how to install Couchbase

I am new to Couchbase database can anyone please guide me to how to install this software and refer some documents, so that I can understand the basics of this Database.
I just posted a tutorial on how to install Couchbase Server on Windows:
http://blog.couchbase.com/2016/may/couchbase-with-windows-and-.net---part-1
But for the record, installing it is pretty easy: just download the binary and follow instructions: http://www.couchbase.com/nosql-databases/downloads
Couchbase.com has a lot of material on how to use and understand Couchbase Server. Maybe you can start on the Getting Started page: http://www.couchbase.com/get-started-developing-nosql
Here's a newer possibility, if you are on Windows. You can use Chocolatey NuGet (which is like apt-get for Windows)
choco install couchbase-server-community installs 4.0.0 (as of today)
choco install couchbase-server-community -pre install 4.5.0 beta (as of today)
Check out Chocolatey NuGet for the most up to date information on which versions you can install.

CUDA 7.5 install on Mac missing nvrtc

According to the documentation, when I install the CUDA 7.5 Toolkit on my Mac (OSX 10.11) I should get the nvrtc files with it. I do not. Where do I pick up the nvrtc header files and libraries? Were they supposed to be in the bundle and left out? Were the deprecated or replaced with something else?
So the trick is:
1) Install XCode (from the App Store) FIRST. After the App Store is done installing it, you have to go into your Application menu and actually run it and accept the license.
2) Use the Homebrew version:
$ brew install Caskroom/cask/cuda
3) Lastly, you can update your PATH and LD_LIBRARY_PATH to find the new code:
$ export PATH=/usr/local/cuda/bin:${PATH}
$ export LD_LIBRARY_PATH=/usr/local/cuda/lib:${LD_LIBRARY_PATH}
For some reason, simply downloading the package from NVidia and installing it does not get you a complete installation.

Unable to install the scrypt gem on fedora 21 machine

I am stuck about the issues, Which coming on my fedora 21 server. Every thing is working like successfully installed the following..
RVM
Ruby 2.1.3
Mysql
When I am going to run command
bundle install
In the middle of the bundle, It abort with the message like please refer the attached image for the same.
Please help me to get resolved the issue.
The errors accused by GCC are about the flags used, -msse and -msse2, they are for x86 architectures but your kernel is arm.
Edit:
If you're using rvm with ruby 2.1.3 the cflags for scrypt gem are set in the Rakefile:
.rvm/gems/ruby-2.1.3#yourgemset/gems/scrypt-1.2.1/ext/scrypt/Rakefile
You should remove the flags -msse and -msee2, I'm not entirely sure of the consequences. Maybe you'll need to change the -arch flag too, it probably is set to x86_64.

193: %1 is not a valid Win32 application error with Ruby (1.9.3) on Rails(3.2.3) with MySQL(5.5) on Windows 7

I cannot seem to run a rail application configured to MySQL. When I run the project, I get the following error:
193: %1 is not a valid Win32 application. - C:/Ruby193/lib/ruby/gems/1.9.1/gems/mysql-2.8.1-x86-mingw32/lib/1.9/mysql_api.so
I've noticed others have hit this but I didn't find any solutions that worked for me. Here's what I've tried so far:
Copying libmysql.dll to the ruby bin folder
Tried older version of MySQL (5.0)
Checked the ImagePath for MySQL on regedit
Can anyone provide guidance here? Is this just a lost cause? Does using Linux or other versions of Ruby/Rails/MySQL combo fix this?
Looks that you installed the binary pre-compiled version of MySQL gem, which requires an specific version of MySQL to be installed.
More important, it requires an specific version of libmysql.dll be available in the PATH so the gem can use it.
I would recommend you uninstall the pre-compiled gem and proceed with the manual compilation steps described here:
http://blog.mmediasys.com/2011/07/07/installing-mysql-on-windows-7-x64-and-using-ruby-with-it/
This has been answered before too:
Ruby Gem for mysql 5.5 in windows
Is Datamapper's dm_mysql_adapter gem supported on windows?
Finally installed MySQL for Rails in Windows 64 bit, and now
on windows Mysql native extension prob in ruby on rails gem time
Hope that helps.