- Community Home
- >
- Servers and Operating Systems
- >
- Server Clustering
- >
- CMU installation problem
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-15-2010 08:18 AM
тАО11-15-2010 08:18 AM
CMU installation problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-16-2010 01:02 AM
тАО11-16-2010 01:02 AM
Re: CMU installation problem
As stated is CMU manual, after installation CMU starts in audit mode (to allow easy HA configuration).
Please type
/etc/init.d/cmu unset_audit
and restart your CMU service
/etc/init.d/cmu restart
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-18-2010 11:38 AM
тАО11-18-2010 11:38 AM
Re: CMU installation problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-06-2011 10:25 AM
тАО06-06-2011 10:25 AM
Re: CMU installation problem
Is there other editing that's needed in cmuserver? I also have java version "1.6.0_17".
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-06-2011 11:13 AM
тАО06-06-2011 11:13 AM
Re: CMU installation problem
It sounds like you have a java version problem. CMU requires Sun/Oracle java. Most Linux distributions come with an open-source version of java, like this:
[root@node14 ~]# java -version
java version "1.6.0"
OpenJDK Runtime Environment (build 1.6.0-b09)
OpenJDK 64-Bit Server VM (build 1.6.0-b09, mixed mode)
[root@node14 ~]#
Note that even after you install the Sun/Oracle version of java, your path may still be configured to find the open-source version:
[root@node14 ~]# rpm -ivh jre-6u11-linux-amd64.rpm
Preparing... ########################################### [100%]
1:jre ########################################### [100%]
Unpacking JAR files...
rt.jar...
jsse.jar...
charsets.jar...
localedata.jar...
[root@node14 ~]# java -version
java version "1.6.0"
OpenJDK Runtime Environment (build 1.6.0-b09)
OpenJDK 64-Bit Server VM (build 1.6.0-b09, mixed mode)
[root@node14 ~]#
This occurs because the 'alternatives' package is managing your 'java' link:
[root@node14 ~]# ls -l `which java`
lrwxrwxrwx 1 root root 22 Jun 6 10:46 /usr/bin/java -> /etc/alternatives/java
[root@node14 ~]#
[root@node14 ~]# alternatives --display java
java - status is auto.
link currently points to /usr/lib/jvm/jre-1.6.0-openjdk.x86_64/bin/java
/usr/lib/jvm/jre-1.6.0-openjdk.x86_64/bin/java - priority 16000
...
To fix this, you need to add the Sun/Oracle java binary to the 'alternatives' management system with a higher priority than the open-source version. First find out where Sun/Oracle installed java:
[root@node14 ~]# rpm -ql jre | tail -n1
/usr/java/jre1.6.0_11/man/man1/unpack200.1
Then use the alternatives command to configure this new java version:
[root@node14 ~]# alternatives --install /usr/bin/java java /usr/java/jre1.6.0_11/bin/java 17000
Finally, confirm that your default java version is now Sun/Oracle:
[root@node14 ~]# java -version
java version "1.6.0_11"
Java(TM) SE Runtime Environment (build 1.6.0_11-b03)
Java HotSpot(TM) 64-Bit Server VM (build 11.0-b16, mixed mode)
[root@node14 ~]#