Does Apache Tuscany SCA come in a 64 bit version? - sca

Is there a 64 bit version of Apache Tuscany SCA?

From https://svn.apache.org/repos/asf/tuscany/sca-cpp/trunk/INSTALL
Tuscany provides two automated install scripts for Ubuntu. You can start with
a fresh Ubuntu Server 10.10 64-bit system and these scripts will take care of
all the download, build and installation steps for you.

Related

Is any application for MongoDB browser in ubuntu 16.04 32 bit processor

I trying to install Mongo DB browser for Ubuntu 16.04 32 bit version but none of application installing to the machine
If you are talking about robo3t, you can download the .tar.gz file for Linux (https://robomongo.org/download), unpack it and run the bin/robo3t executable.
You don't even need to install it.

To Cloudmin GPL for Xen support CentOS Version?

I have decided to install Cloudmin GPL for XEN in CentOS Server with 64 bit and my server configuration is Hard Disk : 4TB latest Xeon processor. The Scripts download from the URL :
http://cloudmin.virtualmin.com/gpl/scripts/cloudmin-gpl-redhat-install.sh
Which version can support for this.
Note: The CentOS 5.6 with 64 bit version does not support.
I have tested the script
http://cloudmin.virtualmin.com/gpl/scripts/cloudmin-gpl-redhat-install.sh
it's working fine and also you need to configure few things,
yum install birdge-utils*
for more help : https://www.virtualmin.com/documentation/cloudmin/virtualization/xen

Building Apache Thrift in Redhat and Fedora

I want to use Apache Thrift in Redhat and Fedora . Are there some known issues in using it in these platforms as the doc says only CentOS and Ubuntu
RedHat and Centos are almost identical platforms and Apache Thrift works well on both. Fedora is also very similar to the prior distros with the benefit of more modern packages and addons, and Apache Thrift also runs well there.

Which Unix flavour do I need? J2EE application using IBM tools?

I want to try Unix for developing J2EE application. I use the IBM software.
WASCE as application server
DB2 Express-C as database.
Eclipse
Which Unix flavour will be most suitable for me?
According to ibm.com: WebSphere Application Server Community Edition runs on AIX, Linux, Solaris, "UNIX" (!!!), and Windows.
According to ibm.com: DB2 Express C runs on Windows, Linux, Solaris, and Mac OS X (in beta).
According to eclipse.org: Eclipse runs on Windows, Mac, and Linux.
The only Unix flavor in common to all of those is Linux. (If you move beyond Unix, Windows also works.)
Java is platform-independent. It doesn't really matter on which platform you develop - you can run your application on any other Java-supporting platform. Hence, you can develop on Windows and deploy on AIX, or develop on Linux and deploy on MacOS, or ...
The Java VM abstracts access to operating system services and resources, as does JDBC abstract the access to the database layer.
If you really mean "UNIX" and not "Linux", I would recommend Solaris (Eclipse does run on Solaris, and it's much easier to understand than AIX).
If you mean Linux too, I would recommend a distro designed for servers, like RHEL/Centos, rather than Ubuntu or Fedora. They are more likely to be stable and scalable.
I have a production environment on Centos with DB2 and Apache Geronimo (open source version of WASCE). Works like a charm. The development environment is Eclipse and Apache Geronimo on Windows and the DB2 on Centos.

How to install Bcrypt on a 64bit Raspberry PI?

I recently built a web application which needs to run bcrypt and mongodb over a raspberry pi 4 model b.
Mongodb require a 64 bit OS.
Bcrypt succeed installation only with 32 bit OS.
I used Ubuntu 20.04 for 64 bit OS and the latest version of raspbian 32 bit.
I searched in the npm bcrypt package documentation and I found out that they only support pre-built binaries for:
Windows x32 and x64
Linux x64 (GlibC targets only). Pre-built binaries for MUSL targets
such as Apline Linux are not available.
macOS
Therefore, I have those options:
Find another package (bcrypt like) which is functionnal for 64 raspberry pi's os
Find a way to install bcrypt on armv7l 64 bit OS
Downgrade mongo with an old version who support 32 bits and use Raspbian
I documented compiled all the logs in this post.
I'm sure someone already faced this issue and knows how to deal with this. Or even, if you know another alternative, I'll be glad to hear! Thank you