Custom Query (431 matches)
Results (13 - 15 of 431)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#1593 | fixed | sge_ca should use sha256 signatures by default | tourist | |
Description |
Current versions of openssl (e.g. the one in RHEL/CentOS 7) have deprecated older, less secure signature algorithms. This includes md5, which is used by default by sge_ca when running in CSP mode. The result of this is hard-to-diagnose failures when trying to run in CSP mode on such a distribution. Examples include sge_qmaster failing to start on CentOS 7, and a CentOS 7 submit host failing when trying to talk to a CentOS 6 queue master. Changing the default signature algorithm to sha256 seems to entirely resolve this issue. |
|||
#1591 | fixed | [PATCH] 8.1.9 build failure with high parallelism | afif | |
Description |
As reported in Debian #846770 [1], gridengine fails to build if trying with 64 threads. The problem turns out to be some undeclared prerequisites for the pdc target. The attached patch fixes it for me. The patch is against the v8.1.9 code base. Thanks and regards Afif -- Afif Elghraoui | عفيف الغراوي http://afif.ghraoui.name |
|||
#1590 | fixed | Hangs in execd status - with FIX | Dave Love <d.love@…> | pete.forman@… |
Description |
I have installed SGE 8.1.9 from RPM on SUSE 11 SP4. PROBLEM: Running this command hangs with no output. sudo /sbin/service sgeexecd.p6444 status DIAGNOSIS: The cause of this is the sgeexecd script failing to set pidfile and then calling cat which now expects STDIN and so waits indefinitely. FIX: This is the patch that I used on the script in /etc/init.d. It is a two line change that you can apply to the appropriate source file. --- sgeexecd.p6444.orig 2016-11-18 17:42:28.000000000 +0000 +++ sgeexecd.p6444 2016-11-22 15:16:04.000000000 +0000 @@ -448,9 +448,10 @@
+ pidfile=$execd_run_dir/execd.pid
+ if $utilbin_dir/checkprog $pid sge_execd > /dev/null; then
VERIFY: Applying that patch causes the status subcommand to report correctly. Regards, Pete Forman Senior Programmer Dolphin Geophysical Limited A member of the Shearwater GeoServices? Group Direct Dial: +44 (0) 1892 707173 / Mobile: +44 (0) 7840 797658 / pete.forman@… Brockbourne House, 77 Mount Ephraim, Tunbridge Wells, Kent, TN4 8BS, UK www.shearwatergeo.com
|