ASG
IBM
Zystems
Cressida
Icon
Netflexity
 
  MQSeries.net
Search  Search       Tech Exchange      Education      Certifications      Library      Info Center      SupportPacs      LinkedIn  Search  Search                                                                   FAQ  FAQ   Usergroups  Usergroups
 
Register  ::  Log in Log in to check your private messages
 
RSS Feed - WebSphere MQ Support RSS Feed - Message Broker Support

MQSeries.net Forum Index » WebSphere Message Broker (ACE) Support » Integration toolkit Commands in LINUX

Post new topic  Reply to topic
 Integration toolkit Commands in LINUX « View previous topic :: View next topic » 
Author Message
psujeethkumar
PostPosted: Mon Nov 30, 2015 5:45 am    Post subject: Integration toolkit Commands in LINUX Reply with quote

Novice

Joined: 08 Sep 2015
Posts: 13

Hello,

We are setting up continuous integration using jenkins in Red Hat Linux server (V6.7) 64bit.

The linux server has IIB (toolkit and broker) installed and required 32bit libraries (glibc *)

But mqsicreatebar command is not working. Below the output from trace (last few lines):

Code:

munmap(0xf77df000, 62685)               = 0
set_tid_address(0xf77d58a8)             = 29629
set_robust_list(0xf77d58b0, 12)         = 0
futex(0xffec0f44, FUTEX_WAKE_PRIVATE, 1) = 0
futex(0xffec0f44, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 1, NULL, ffec0f54) = -1 EAGAIN (Resource temporarily unavailable)
rt_sigaction(SIGRTMIN, {0x438770, [], SA_SIGINFO}, NULL, 8) = 0
rt_sigaction(SIGRT_1, {0x438c70, [], SA_RESTART|SA_SIGINFO}, NULL, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
getrlimit(RLIMIT_STACK, {rlim_cur=10240*1024, rlim_max=RLIM_INFINITY}) = 0
uname({sys="Linux", node="lum0142li.nrb.be", ...}) = 0
statfs64("/selinux", 84, {f_type=0xf97cff8c, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0, 0}, f_namelen=255, f_frsize=4096, f_flags=4096}) = 0
statfs64("/selinux", 84, {f_type=0xf97cff8c, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0, 0}, f_namelen=255, f_frsize=4096, f_flags=4096}) = 0
stat64("/selinux", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
brk(0)                                  = 0x971b000
brk(0x973c000)                          = 0x973c000
stat64("/opt/ibm/mqsi/9.0.0.2/jre17/bin/mqsicreatebar", 0xffec0c1c) = -1 ENOENT (No such file or directory)
stat64("/opt/IBM/IntegrationToolkit90/mqsicreatebar", {st_mode=S_IFREG|0755, st_size=18994, ...}) = 0
stat64("/opt/IBM/IntegrationToolkit90/mqsicreatebar", {st_mode=S_IFREG|0755, st_size=18994, ...}) = 0
stat64("/opt/IBM/IntegrationToolkit90/plugins/org.eclipse.equinox.launcher_1.1.1.R36x_v20101122_1400.jar", {st_mode=S_IFREG|0755, st_size=47201, ...}) = 0
stat64("/opt/IBM/IntegrationToolkit90/jdk/bin/java", {st_mode=S_IFREG|0755, st_size=5563, ...}) = 0
shmget(0x73bd, 16384, IPC_CREAT|0666)   = 2129926
stat64("/opt/IBM/IntegrationToolkit90/plugins/org.eclipse.equinox.launcher_1.1.1.R36x_v20101122_1400.jar", {st_mode=S_IFREG|0755, st_size=47201, ...}) = 0
open("/opt/IBM/IntegrationToolkit90/eclipse.ini", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0755, st_size=471, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xfffffffff77ee000
read(3, "-vm\n/opt/IBM/IntegrationToolkit9"..., 4096) = 471
read(3, "", 4096)                       = 0
close(3)                                = 0
munmap(0xf77ee000, 4096)                = 0
access("/etc/sysconfig/32bit_ssse3_memcpy_via_32bit_ssse3_memmove", F_OK) = -1 ENOENT (No such file or directory)
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0) = 29630
wait4(-1, [{WIFEXITED(s) && WEXITSTATUS(s) == 13}], 0, NULL) = 29630
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=29630, si_status=13, si_utime=49, si_stime=8} ---
shmctl(2129926, IPC_64|IPC_RMID, 0)     = 0
exit_group(13)                          = ?
+++ exited with 13 +++


It seems like problem with linux OS. Have any faced this issue?
Back to top
View user's profile Send private message
fjb_saper
PostPosted: Mon Nov 30, 2015 6:01 am    Post subject: Reply with quote

Grand High Poobah

Joined: 18 Nov 2003
Posts: 20756
Location: LI,NY

you need the libraries for a full 32 bit eclipse with X11 for this command to work right.
What is the value of your DISPLAY environment variable?
Have fun
_________________
MQ & Broker admin
Back to top
View user's profile Send private message Send e-mail
maurito
PostPosted: Mon Nov 30, 2015 6:03 am    Post subject: Re: Integration toolkit Commands in LINUX Reply with quote

Partisan

Joined: 17 Apr 2014
Posts: 358

stat64("/opt/ibm/mqsi/9.0.0.2/jre17/bin/mqsicreatebar", 0xffec0c1c) = -1 ENOENT (No such file or directory)

On Linux on x86, the default is /opt/IBM/IntegrationToolkit90
Back to top
View user's profile Send private message
psujeethkumar
PostPosted: Mon Nov 30, 2015 6:37 am    Post subject: Reply with quote

Novice

Joined: 08 Sep 2015
Posts: 13

Quote:
you need the libraries for a full 32 bit eclipse with X11 for this command to work right.


I have following libraries installed :

Code:

glibc-static-2.12-1.166.el6_7.3.i686
glibc-2.12-1.166.el6_7.3.x86_64
glibc-static-2.12-1.166.el6_7.3.x86_64
glibc-common-2.12-1.166.el6_7.3.x86_64
glibc-utils-2.12-1.166.el6_7.3.x86_64
glibc-devel-2.12-1.166.el6_7.3.x86_64
glibc-headers-2.12-1.166.el6_7.3.x86_64
glibc-devel-2.12-1.166.el6_7.3.i686
glibc-2.12-1.166.el6_7.3.i686
compat-glibc-headers-2.5-46.2.x86_64


Following x11 libraries installed:

Code:

xorg-x11-xkb-utils-7.7-4.el6.x86_64
xorg-x11-font-utils-7.2-11.el6.x86_64
xorg-x11-apps-7.7-6.el6.x86_64
qt-x11-4.6.2-28.el6_5.x86_64
xorg-x11-fonts-Type1-7.2-11.el6.noarch
xorg-x11-drv-ati-firmware-7.5.99-3.el6.noarch
dbus-x11-1.2.24-8.el6_6.x86_64
ConsoleKit-x11-0.4.1-3.el6.x86_64
xorg-x11-server-common-1.15.0-36.el6.x86_64


DISPLAY variable is empty. What value should this variable have ?

@maurito :

Command searches in all possible folders. See the log, it has this line:

Code:
stat64("/opt/IBM/IntegrationToolkit90/mqsicreatebar", {st_mode=S_IFREG|0755, st_size=18994, ...}) = 0
Back to top
View user's profile Send private message
psujeethkumar
PostPosted: Mon Nov 30, 2015 6:54 am    Post subject: Reply with quote

Novice

Joined: 08 Sep 2015
Posts: 13

The line :
Code:

access("/etc/sysconfig/32bit_ssse3_memcpy_via_32bit_ssse3_memmove", F_OK) = -1 ENOENT (No such file or directory)


looks like it is bug in RHEL from this link.

Bug number # BZ#846342.

However, this looks workaround but no clue how to apply this patch.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic  Reply to topic Page 1 of 1

MQSeries.net Forum Index » WebSphere Message Broker (ACE) Support » Integration toolkit Commands in LINUX
Jump to:  



You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Protected by Anti-Spam ACP
 
 


Theme by Dustin Baccetti
Powered by phpBB © 2001, 2002 phpBB Group

Copyright © MQSeries.net. All rights reserved.