Custom Query (2765 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (1 - 3 of 2765)

1 2 3 4 5 6 7 8 9 10 11
Ticket Resolution Summary Owner Reporter
#44 worksforme Rasdaman Conf. Dimitar Misev s.juba@…
Description

The rasdaman configuration are defined in different places and using different styles and it is very difficult to trace these configurations. For examples, the globals.hh file define many external variables that control the behavior of rasdaman. Another place of configuration is rasmgr.conf. In these two places one can observe that there are redundancy in the definitions. Another place where one can find general definitions of configuration is inline the source code. for example rasql.cc repeats the same definition in glabals.hh and rasmgr.conf

Please see below

rasql.cc #define PARAM_SERV_FLAG 's' #define PARAM_SERV "server" #define HELP_SERV "<host-name> rasdaman server" #define DEFAULT_SERV "localhost"

#define PARAM_PORT_FLAG 'p' #define PARAM_PORT "port" #define HELP_PORT "<p> rasmgr port number" #define DEFAULT_PORT 7001 #define DEFAULT_PORT_STR "7001"

….

const char *serverName = DEFAULT_SERV; r_ULong serverPort = DEFAULT_PORT; const char *baseName = DEFAULT_DB; const char *user = DEFAULT_USER; const char *passwd = DEFAULT_PASSWD;

glabals.hh

/ default rasmgr listen port #define DEFAULT_PORT 7001

/ name of env var pointing to rasdaman home dir (ex: "/opt/rasdaman") #define RMANHOME_VAR "RMANHOME"

/ default name of server machine, if gethostname() fails #define DEFAULT_HOSTNAME "localhost"

/ default database name #define DEFAULT_DBNAME "RASBASE" ……

rasmgr.conf

define db RASBASE -dbh rasdaman_host

# define a rasdaman database server process with name N1 # parameters: # -host h name of the host machine the server runs on # (cf: man 1 hostname) # -type t communication protocol type is t # (one of: 'r' for RPC, 'h' for HTTP, 'n' for RNP); # recommended: use 'n', all others are deprecated # -port p port number for contacting this server is p # (rasmgr by default uses 7001, so you may simply count up) # -dbh d use database host d (see "define dbh" for allowed names

#82 worksforme Credentials in rasdaman installed from an RPM Dimitar Misev mase@…
Description

Before opening up our machine to the outside world I was going to set some improved security like changing the default rasadmin passwords etc. I used the raspasswd utility and this changed the password temporarily but when restarting the rasmgr service:

  1. service rasmgr stop/restart/start commands don't work because the password is encoded in the /etc/init.d/rasmgr script. Therefore had to kill rasmgr process with kill command. How do we update the /etc/init.d/rasmgr script with a new password?
  2. When stopping rasmgr gives an error about not being able to write the authorization file /etcrasmgr.auth so it doesn't exist when restarting and the passwords are back to the default. Running raspasswd as root doesn't help (it doesn't seem to try to create the /etc/rasmgr.auth file at the time of running. I could try making /etc dir writable by non-root processes but this doesn't seem the right way to go. How should the rasadmin password be changed?

Anything else we should be aware of when updating the passwords? I notice the rasadmin password is in the default petascope settings file: does petascope really need this if we are just reading data?

#244 worksforme Dashes should be allowed in collection names Dimitar Misev Dimitar Misev
Description

Right now it seems that rasdaman doesn't allow (parsing fails I believe) any '-' in collection names.

To reproduce just try to create a collection name that contains '-', e.g.

create collection test-2 GreySet
1 2 3 4 5 6 7 8 9 10 11
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.