Stardog trial installation not starting up

Hello Stardog support,

Thanks for your help so far.

I’m using the enterprise license. I followed the instruction. My port 5820 is in use so I’m specifying a port 5812 and an IP address.

When I run the following in bin folder:

[root@boole bin]$./stardog-admin --server http://156.22.38.101:5812 server start

I get this:

************************************************************
This copy of Stardog is licensed to Ruth ****
This is a trial Enterprise license ****
This license will expire in ****
************************************************************

                                                             :;   
                                      ;;                   `;`:   
  `'+',    ::                        `++                    `;:`  
 +###++,  ,#+                        `++                    .     
 ##+.,',  '#+                         ++                     +    
,##      ####++  ####+:   ##,++` .###+++   .####+    ####++++#    
`##+     ####+'  ##+#++   ###++``###'+++  `###'+++  ###`,++,:     
 ####+    ##+        ++.  ##:   ###  `++  ###  `++` ##`  ++:      
  ###++,  ##+        ++,  ##`   ##;  `++  ##:   ++; ##,  ++:      
    ;+++  ##+    ####++,  ##`   ##:  `++  ##:   ++' ;##'#++       
     ;++  ##+   ###  ++,  ##`   ##'  `++  ##;   ++:  ####+        
,.   +++  ##+   ##:  ++,  ##`   ###  `++  ###  .++  '#;           
,####++'  +##++ ###+#+++` ##`   :####+++  `####++'  ;####++`      
`####+;    ##++  ###+,++` ##`    ;###:++   `###+;   `###++++      
                                                    ##   `++      
                                                   .##   ;++      
                                                    #####++`      
                                                     `;;;.        
************************************************************


Stardog server 5.0.2 started on Mon Aug 21 18:50:20 EDT 2017.

Stardog server is listening on all network interfaces.
HTTP server available at http://localhost:5820.

STARDOG_HOME=/home/softwares/stardog/stardog-5.0.2 

But it stops here and the stardog server does not start up.

Please help.
Thanks

You should use the --server argument to subsequent stardog-admin commands, but starting the server you need --port as shown in the output of stardog-admin help server start:

* Run a Stardog server on localhost only with a different port
    $ stardog-admin server start --bind 127.0.0.1 --port 5804

Hope this helps.
Jess

Thanks.

Please how do you stop it?
Like this?
$ stardog-admin server stop --bind 127.0.0.1 --port 5804

Also, do I need to specify the server address when creating db like this?

./stardog-admin --server 127.0.0.1:5804 db create -n myDB1 /data.nt

Since you started Stardog on port 5820 (which must not have been in use due to the fact that it started successfully), you can just execute stardog-admin server stop.

You will need to specify the --server argument to all admin commands if the server is not started on the default port of 5820. For non-admin commands, you will need to specify the server address after the command,
e.g. stardog query http://localhost:5804/myDb "select * where { ?s ?p ?o }".

Jess

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.