Skip to content
Snippets Groups Projects
Commit edc7e446 authored by Leo Gordon's avatar Leo Gordon
Browse files

An important comment about UNIX sockets (without a port number) vs TCPIP...

An important comment about UNIX sockets (without a port number) vs TCPIP sockets (with a port number).
parent f2a1e22b
No related branches found
No related tags found
No related merge requests found
......@@ -89,7 +89,8 @@ sub default_options {
'hive_root_dir' => $ENV{'EHIVE_ROOT_DIR'} # this value is set up automatically if this code is run by init_pipeline.pl
|| $self->o('ensembl_cvs_root_dir').'/ensembl-hive', # otherwise we have to rely on other means
'host' => 'localhost',
'host' => 'localhost', # BEWARE that 'localhost' for mysql driver usually means a UNIX socket, not a TCPIP socket!
# If you need to connect to TCPIP socket, set -host => '127.0.0.1' instead.
'port' => undef,
'user' => $ENV{'EHIVE_USER'} || 'ensadmin',
'password' => $ENV{'EHIVE_PASS'} // $ENV{'ENSADMIN_PSW'} // $self->o('password'), # people will have to make an effort NOT to insert it into config files like .bashrc etc
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment