Bug #17533 | HP-UX 11.23 (IA64, 64-bit) Standard 5.0.18 Depot Install fails | ||
---|---|---|---|
Submitted: | 17 Feb 2006 23:06 | Modified: | 21 Feb 2006 16:44 |
Reporter: | Gary Rocklitz | Email Updates: | |
Status: | Closed | Impact on me: | |
Category: | MySQL Server | Severity: | S1 (Critical) |
Version: | 5.0.18 | OS: | HP/UX (HP-UX 11.23 (IA64, 64-bit)) |
Assigned to: | CPU Architecture: | Any |
[17 Feb 2006 23:06]
Gary Rocklitz
[19 Feb 2006 12:50]
Valeriy Kravchuk
Thank you for a problem report. Sorry, but I do not understand your problem. You have (successfully) installed http://dev.mysql.com/get/Downloads/MySQL-5.0/mysql-standard-5.0.18-hpux11.23-ia64-64bit.de..., and what happened then? What commands you performed, what had you got and what you expected to get? Please, clarify.
[19 Feb 2006 15:30]
Gary Rocklitz
Looks like the bug submittal program severely truncated this bug. The depot checks OK... but I believe the depot was not compiled on a standard HPUX 11i 11.23 machine. Also... The perl bin files are using a non-standard (for HP) perl (/usr/contrib/bin/perl ranther than the HPUX standard usr/bin/perl or the open source install usr/local/bin/perl) and the binary programs look to be built for a wrong machine as well... yield the results seen in "how to repeat this bug". I've added paths to gcc libraries on the guess that this might have been built using gcc rather than hp's cc... that does not work either. I've re-perled the bin scripts to an installed version of perl... but don't get very far since the config script and the binaries show the results seen in "how to repeat this bug". It might be me, but I'm guessing this depot wasn't built on an HP 11i platform... the binaries ry to execute, but return gibberish. Other than more detail, the original bug submittal had a bunch on what's on my machine... it's a fairly vanilla HP 11i (11.23) Superdome... with hp compilers installed and gcc and a more up to date perl alternately also available.
[20 Feb 2006 9:28]
Ay Nakamura
I also failed to install MySQL 5.0.18 using depot package from http://mirror.mysql-partners-jp.biz/Downloads/MySQL-5.0/mysql-max-5.0.18-hpux11.23-ia64-64.... 'swinstall' worked gracefully. However, I couldn't invoke "./scripts/mysql_install_db". Then I found no body, even a owner-user, had a 'write' permission for all directories and files under /usr/local/mysql. To avoid this problem, I did as follows; # cd /usr/local/mysql # chmod u+w * # chmod 755 ./bin/* # chmod 750 ./data/mysql ./data/test # chmod 644 ./docs/* # chmod -R u+w include lib man mysql-test scripts share sql-bench support-files tests I guess something wrong with Depot packages for HP-UX 11.23 (IA64). Please check.
[21 Feb 2006 16:44]
Gary Rocklitz
Turned out the binarys not working was a personal problem... apparently my gunzip was corrupting. I fixed the /usr/contrib/bin/perl problem with the following script: #!/bin/csh -f # #!/bin/csh -f -v -x # ------------------------------------------------------------------------- # Script to change perl locale # # To use: # type reperl # ------------------------------------------------------------------------- # # echo 'Fix perl in .' set files = `grep -c /usr/contrib/bin/perl * | awk 'BEGIN { FS = ":" } ; {if ($2 > 0 ) print $1; }'` foreach i ($files) cp $i junk.tmp sed -e 's/\/usr\/contrib\/bin\/perl/\/usr\/local\/bin\/perl/' junk.tmp > $i echo 'changed file: '$i end rm junk.tmp Thanks...