Dale,
Installing GemStone 3.29 in Centos 6.3 report: The installation process went OK but i can not start the Stone process. Netldi it seems to work fine. (startNetldi devKit_329) But startStone devKit_329 answer: ================= GsDevKit script: startStone devKit_329 path: /opt/git/GsDevKit_home/bin/startStone ================= The stone devKit_329 does not exist The install command was: installServer -c https devKit_329 3.2.9 I'm checking the installation process maybe i forgot something.... Regards, Bruno |
Bruno,
Hmmm it is odd that the netldi exists independent of the stone ... I'd like to see as much of the log that was produced by the installServer command as possible ... Dale On 1/27/16 10:43 AM, BrunoBB via Glass wrote: > Dale, > > Installing GemStone 3.29 in Centos 6.3 report: > > The installation process went OK but i can not start the Stone process. > Netldi it seems to work fine. (startNetldi devKit_329) > > But startStone devKit_329 answer: > ================= > GsDevKit script: startStone devKit_329 > path: /opt/git/GsDevKit_home/bin/startStone > ================= > The stone devKit_329 does not exist > > The install command was: installServer -c https devKit_329 3.2.9 > > I'm checking the installation process maybe i forgot something.... > > Regards, > Bruno > > > > -- > View this message in context: http://forum.world.st/Installing-Server-only-devKit-329-does-not-exist-tp4874425.html > Sent from the GLASS mailing list archive at Nabble.com. > _______________________________________________ > Glass mailing list > [hidden email] > http://lists.gemtalksystems.com/mailman/listinfo/glass _______________________________________________ Glass mailing list [hidden email] http://lists.gemtalksystems.com/mailman/listinfo/glass |
Dale,
My network connection is not a good one so it could be possible that some file was not copied or something like that. Anyway i trying to install it again. Another question, is there any "gslist" like command in this installation ? Regards, Bruno |
$GS_HOME/bin/stones gives you the gslist output ...
On 01/27/2016 11:10 AM, BrunoBB via Glass wrote: > Dale, > > My network connection is not a good one so it could be possible that some > file was not copied or something like that. > > Anyway i trying to install it again. > > Another question, is there any "gslist" like command in this installation ? > > Regards, > Bruno > > > > -- > View this message in context: http://forum.world.st/Installing-Server-only-devKit-329-does-not-exist-tp4874425p4874428.html > Sent from the GLASS mailing list archive at Nabble.com. > _______________________________________________ > Glass mailing list > [hidden email] > http://lists.gemtalksystems.com/mailman/listinfo/glass _______________________________________________ Glass mailing list [hidden email] http://lists.gemtalksystems.com/mailman/listinfo/glass |
Dale,
These a the commands to install (gemstone is in sudoers file): adduser gemstone passwd gemstone sudo yum install git-all cd /home cd gemstone mkdir git cd git git clone https://github.com/GsDevKit/GsDevKit_home.git cd GsDevKit_home/ git checkout -b gsdevkit export GS_HOME=/home/gemstone/git/GsDevKit_home export PATH=$GS_HOME/bin:$PATH $GS_HOME/bin/installServer -c https devKit_329 3.2.9 Take it from: https://github.com/GsDevKit/GsDevKit_home/blob/master/docs/installation/installDevKitServer.md The installation is interrupted with this output: ================= GsDevKit script: create_gs_server_image -d /home/gemstone/git/GsDevKit_home/s hared/pharo gsDevKitCommandLine path: /home/gemstone/git/GsDevKit_home/shared/bin/create_gs_server _image ================= ================= GsDevKit script: downloadSmalltalkClient -v Pharo3.0 -d /home/gemstone/git/Gs DevKit_home/shared/pharo path: /home/gemstone/git/GsDevKit_home/bin/private/downloadSmallta lkClient ================= Installing Pharo3.0 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 101 5473 101 5473 0 0 8407 0 --:--:-- --:--:-- --:--:-- 9244 Downloading the latest pharoVM: http://files.pharo.org/get-files/30/pharo-linux-stable.zip pharo-vm/pharo Downloading PharoV30.sources: http://files.pharo.org/get-files/30/sources.zip Creating starter scripts pharo and pharo-ui On a 64-bit system? You must install the 32-bit libraries Try `sudo aptitude install ia32-libs` or see http://pharo.org/gnu-linux-insta llation#64-bit-System-Setup for more info % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 102 2771 102 2771 0 0 5162 0 --:--:-- --:--:-- --:--:-- 5218 Downloading the latest 30 Image: http://files.pharo.org/get-files/30/pharo.zip Pharo.image ...finished downloadSmalltalkClient create gsDevKitCommandLine.image image using /home/gemstone/git/GsDevKit_home/sy s/default/pharo/gsDevKitCommandLineLoad.st /home/gemstone/git/GsDevKit_home/shared/pharo/pharo: /home/gemstone/git/GsDevKit _home/shared/pharo/pharo-vm/pharo: /lib/ld-linux.so.2: bad ELF interpreter: No s uch file or directory It seems is trying to install the Pharo client ? Why ? I'm want to install server only... Regards, Bruno |
Bruno,
The logic for a number of the GsDevKit_home is written in pharo smalltalk, so a $GS_HOME/bin/devKitCommandLine pharo image is luanched to perform certain commands ... I didn't want to have to write that logic in bash or ruby .... so the Pharo vm is a headless vm ... also depending upon which command is being run, the devKitCommandLine image will log into a stone using the session description credentials ... So the 32bit libraries need to be installed ... the $GS_HOME/bin/utils/installOsPrereqs should be run on a new system. In the next release the installOsPrereqs command will be run has part of the install* scripts, since missing the prereqs or not installing the right set of libraries can cause unexpected problems ... With that said, it is possible to bypass the installOsPrereqs script if you want to have greater control over what is installed or when the installation occurs... Dale On 01/28/2016 09:00 AM, BrunoBB via Glass wrote: > Dale, > > These a the commands to install (gemstone is in sudoers file): > adduser gemstone > passwd gemstone > sudo yum install git-all > cd /home > cd gemstone > mkdir git > cd git > git clone https://github.com/GsDevKit/GsDevKit_home.git > cd GsDevKit_home/ > git checkout -b gsdevkit > export GS_HOME=/home/gemstone/git/GsDevKit_home > export PATH=$GS_HOME/bin:$PATH > $GS_HOME/bin/installServer -c https devKit_329 3.2.9 > > Take it from: > https://github.com/GsDevKit/GsDevKit_home/blob/master/docs/installation/installDevKitServer.md > > The installation is interrupted with this output: > ================= > GsDevKit script: create_gs_server_image -d > /home/gemstone/git/GsDevKit_home/s > hared/pharo gsDevKitCommandLine > path: > /home/gemstone/git/GsDevKit_home/shared/bin/create_gs_server > _image > ================= > ================= > GsDevKit script: downloadSmalltalkClient -v Pharo3.0 -d > /home/gemstone/git/Gs > DevKit_home/shared/pharo > path: > /home/gemstone/git/GsDevKit_home/bin/private/downloadSmallta > lkClient > ================= > Installing Pharo3.0 > % Total % Received % Xferd Average Speed Time Time Time > Current > Dload Upload Total Spent Left > Speed > 101 5473 101 5473 0 0 8407 0 --:--:-- --:--:-- --:--:-- > 9244 > Downloading the latest pharoVM: > http://files.pharo.org/get-files/30/pharo-linux-stable.zip > pharo-vm/pharo > Downloading PharoV30.sources: > http://files.pharo.org/get-files/30/sources.zip > Creating starter scripts pharo and pharo-ui > On a 64-bit system? You must install the 32-bit libraries > Try `sudo aptitude install ia32-libs` or see > http://pharo.org/gnu-linux-insta > llation#64-bit-System-Setup for more info > % Total % Received % Xferd Average Speed Time Time Time > Current > Dload Upload Total Spent Left > Speed > 102 2771 102 2771 0 0 5162 0 --:--:-- --:--:-- --:--:-- > 5218 > Downloading the latest 30 Image: > http://files.pharo.org/get-files/30/pharo.zip > Pharo.image > ...finished downloadSmalltalkClient > create gsDevKitCommandLine.image image using > /home/gemstone/git/GsDevKit_home/sy > s/default/pharo/gsDevKitCommandLineLoad.st > /home/gemstone/git/GsDevKit_home/shared/pharo/pharo: > /home/gemstone/git/GsDevKit > _home/shared/pharo/pharo-vm/pharo: /lib/ld-linux.so.2: bad ELF interpreter: > No s > uch file or directory > > It seems is trying to install the Pharo client ? > Why ? I'm want to install server only... > > Regards, > Bruno > > > > -- > View this message in context: http://forum.world.st/Installing-Server-only-devKit-329-does-not-exist-tp4874425p4874567.html > Sent from the GLASS mailing list archive at Nabble.com. > _______________________________________________ > Glass mailing list > [hidden email] > http://lists.gemtalksystems.com/mailman/listinfo/glass _______________________________________________ Glass mailing list [hidden email] http://lists.gemtalksystems.com/mailman/listinfo/glass |
Dale,
This is the ouput after executing "$GS_HOME/bin/utils/installOsPrereqs", it seem that is not executing nothing but showing command options... [gemstone@localhost utils]$ $GS_HOME/bin/utils/installOsPrereqs ================= GsDevKit script: installOsPrereqs path: /home/gemstone/git/GsDevKit_home/bin/utils/installOsPrereqs ================= unrecognized Ubuntu version 6.3 USAGE: installOsPrereqs [-h] [-X] [-G] Install os-specific required packages: - 32 bit libraries - git - curl - unzip - ssl - PAM and os-specific optional packages: - X11 If the file /home/gemstone/git/GsDevKit_home/bin/.osPrereqsSysSetup exists, then the prerequisite installation is skipped. OPTIONS -h display help -G install GemTools and the GemTools prerequisites -X if present, X11 client installed EXAMPLES ./installOsPrereqs -h ./installOsPrereqs ./installOsPrereqs -X ./installOsPrereqs -G -X [gemstone@localhost utils]$ |
Bruno, it looks like you are using an "unknown version of ubuntu" ...
the script itself has been tested with only Ubuntu 12.04 and Ubuntu 14.04 (Centos support is in the pipeline on the dev branch). The script is using `lsb_release -rs` to determine the version of ubuntu, but that's probably not correct for the os that you are using (what os are you using?). `lsb_release -ds` apparently gives the full name, so it would be interesting to see what you get ... Have you installed the other GemStone prereqs on your system, using `sudo apt-get` or some other command? It should be straightforward (not necessarily simple) to get your platform supported.. Dale On 01/28/2016 09:38 AM, BrunoBB via Glass wrote: > Dale, > > This is the ouput after executing "$GS_HOME/bin/utils/installOsPrereqs", it > seem that is not executing nothing but showing command options... > > [gemstone@localhost utils]$ $GS_HOME/bin/utils/installOsPrereqs > ================= > GsDevKit script: installOsPrereqs > path: > /home/gemstone/git/GsDevKit_home/bin/utils/installOsPrereqs > ================= > unrecognized Ubuntu version 6.3 > USAGE: installOsPrereqs [-h] [-X] [-G] > > Install os-specific required packages: > - 32 bit libraries > - git > - curl > - unzip > - ssl > - PAM > > and os-specific optional packages: > - X11 > > If the file /home/gemstone/git/GsDevKit_home/bin/.osPrereqsSysSetup exists, > then > the prerequisite installation is skipped. > > OPTIONS > -h > display help > -G > install GemTools and the GemTools prerequisites > -X > if present, X11 client installed > > EXAMPLES > ./installOsPrereqs -h > ./installOsPrereqs > ./installOsPrereqs -X > ./installOsPrereqs -G -X > [gemstone@localhost utils]$ > > > > -- > View this message in context: http://forum.world.st/Installing-Server-only-devKit-329-does-not-exist-tp4874425p4874577.html > Sent from the GLASS mailing list archive at Nabble.com. > _______________________________________________ > Glass mailing list > [hidden email] > http://lists.gemtalksystems.com/mailman/listinfo/glass _______________________________________________ Glass mailing list [hidden email] http://lists.gemtalksystems.com/mailman/listinfo/glass |
Dale,
Yes, i think is a Centos issue. I have swtched to Ubuntu 14.04 let you know how it will go... Regards, Bruno |
Dale,
My Centos 6.3 was the culprint. With Ubuntu 14.04 GemStone/S 3.2.9 was installed correctly :) Regards, Bruno |
BrunoBB, I added the support for CentOS to install automatically all dependencies. Please don;t give up with CentOS unless you really want to migrate the OS. The 'dev' branch of gsDevKit_home, executing the `installOsPrereqs` MUST fix it. On Thu, Jan 28, 2016 at 3:39 PM, BrunoBB via Glass <[hidden email]> wrote: Dale, _______________________________________________ Glass mailing list [hidden email] http://lists.gemtalksystems.com/mailman/listinfo/glass |
Dale,
No, these are development VM so i'm NOT giving up with CentOS just delaying the installation in CentOS. At this stage is not important to me Ubuntu or CentOS ... Just installing the latest GemStone to fix: https://github.com/brunobuzzi/OrbeonBridgeForGemStone/issues/116 Be sure i will give a try to CentOS again in the near future :) Regards, Bruno |
Free forum by Nabble | Edit this page |