Originally posted by amaruquyllur
View Post
Unconfigured Ad
Collapse
X
-
Did you follow the advice earlier in the thread? That is, can you connect to the database from the command line to confirm mysql is running (and that you have created a user that can connect)? Also, you shouldn't be using the root user for normal operations.
-
-
Okay, have you installed an updated version of the Perl driver for mysql (DBD::mysql)? You will need to make sure you can connect via DBD::mysql, and if you can, that reduces the source of problems to the configuration file or the orthomcl script.Originally posted by amaruquyllurYes:
- I can connect to mysql as root.
- I created the user "orthomcl".
- I can connect with the user "ortomcl" as well.
- I have granted all permissions to"orthomcl".
Yet the same error... I am wondering why...
Comment
-
-
mysql> show grants for 'orthomcl'@'localhost';
+------------------------------------------------------------------------------------------------------------------+
| Grants for orthomcl@localhost |
+------------------------------------------------------------------------------------------------------------------+
| GRANT USAGE ON *.* TO 'orthomcl'@'localhost' IDENTIFIED BY PASSWORD '***' |
| GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, CREATE VIEW ON `orthomcl`.* TO 'orthomcl'@'localhost' |
+------------------------------------------------------------------------------------------------------------------+
2 rows in set (0.00 sec)
Yet the same error when i type:
$ orthomclInstallSchema orthomcl.config
DBI connect('orthomcl:3307','orthomcl',...) failed: Can't connect to MySQL server on '3307' (60) at /***/orthomclSoftware-v2.0.9/bin/../lib/perl/OrthoMCLEngine/Main/Base.pm line 56.
Comment
-
-
You can check that at the command line:Originally posted by amaruquyllur View PostThank you, i will check that.That will let you know if you can connect via port 3307, but I don't think that is the issue. That database connection string does not look correct, which would indicate there is something wrong with your configuration file for the user to be interpreted as the host.Code:mysql -u orthomcl -P 3307
Comment
-
-
$ cat orthomcl.config
# this config assumes a mysql database named 'orthomcl'. adjust according
# to your situation.
dbVendor=mysql
dbConnectString=dbi:mysql
rthomcl:3307
dbLogin=orthomcl
dbPassword=*** (i'm sure it is right)
similarSequencesTable=SimilarSequences
orthologTable=Ortholog
inParalogTable=InParalog
coOrthologTable=CoOrtholog
interTaxonMatchView=InterTaxonMatch
percentMatchCutoff=50
evalueExponentCutoff=-5
oracleIndexTblSpc=NONE
and:
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| orthomcl |
| test |
+--------------------+
3 rows in set (0.00 sec)
So the database exists. I have all the grants for `orthomcl' on this database, and the .config file should be ok...
Comment
-
-
YAY! Wait three minutes. I will jump off a bridge and then come back to celebrate this. I think it worked :-)
Thank you!Last edited by amaruquyllur; 09-10-2013, 08:20 AM.
Comment
-
-
Glad you got things working.Originally posted by amaruquyllur View PostUSEFUL TIP
(for other users)
Actually I had already tried to modify that line, putting port 3306 instead of 3307. Didn't work. But deleted the whole line allowed the connection... THROUGH PORT 3306!
A bit crazy, but i have to process some data and not time to ask why.
Thanks again.
:-)
For other users, it may not be necessary to specify the port. However, it is important to correctly specify the host, user, password, and database. If you combine those parameters into a string it may cause parsing/connection issues.
Comment
-
-
DBI can't connect to local MySQL server (orthoMCL)
Dear friends,
I encountered similar situation (and this is the closest error message I could find), but could not work it out with the methods discussed here. I would appreciate very much if you can help diagnose and advise some troubleshooting tricks. Please forgive me for this long post as I am a newby for mysql.
DESCRIPTION: I installed mysql 5.6.21 to ubuntu 14.04 as a non-root user. I set up the default mysql database using the special configuration file mysql.cnf from the orthoMCL package (socket=/tmp/mysql_2.sock, port=3307, ...):
./scripts/mysql_install_db --defaults-file=mysql.cnf
and started mysql server like this:
./bin/mysqld_safe --defaults-file=mysql.cnf &
The mysql database seemed running fine. when I typed ps -e|grep -i 'mysqld', I got
23388 pts/0 00:00:00 mysqld_safe
23553 pts/0 00:00:00 mysqld
I logged in to this mysql server as root, and created a database called orthomcl that I will use for OrthoMCL. Then I logged out (ctrlD)
./bin/mysql --defaults-file=mysql.cnf -u root -p
mysql> CREATE DATABASE orthomcl;
mysql> GRANT SELECT,INSERT,UPDATE,DELETE,CREATE VIEW,CREATE, INDEX, DROP on orthomcl.* TO orthomcl@localhost;
mysql> set password for orthomcl@localhost = password('yourpassword');
According to the UserGuide, I also created an orthomcl.config file, the first few lines look like this:
dbVendor=mysql
dbConnectString=dbi:mysql
rthomcl:localhost:3307
dbLogin=orthomcl
dbPassword=***(I'm sure it's the right password)
Then I run the orthomclInstallSchema with the command
./bin/orthomclInstallSchema ./my_orthomcl_dir/orthomcl.config ./my_orthomcl_dir/sql_log_file table_suffix
and I got the following error message:
DBI connect('orthomcl:localhost:3307','orthomcl',...) failed: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) at /home/mylogin/orthomclSoftware-v2.0.9/bin/../lib/perl/OrthoMCLEngine/Main/Base.pm line 56.
I assume this may be due to the dbConnectString, so I changed it to
dbConnectString=dbi:mysql
rthomcl
and executed the orthomclInstallSchema command again, but I still got the same error:
DBI connect('orthomcl','orthomcl',...) failed: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) at /home/mylogin/orthomclSoftware.......
I even tried dbConnectString=dbi:mysql
rthomcl:3307 and got this:
DBI connect('orthomcl:3307','orthomcl',...) failed: Can't connect to MySQL server on '3307' (22) at /home/mylogin/orthomclSoftware......
QUESTIONS:
1) As long as the mysql database was running, it is not necessary to login as orthomcl, right? Because the orthomcl.config file will be used to automatically login to the database.
2) What's the difference between these two? Which one should I use? Is the orthomcl a centrally installed mysql server if it was created by root?
dbi:mysql
rthomcl (for a centrally installed mysql server with a database called 'orthomcl')
dbi:MySql
rthomcl:localhost:3307 (for a user installed mysql server on port 3307 with a database called 'orthomcl')
3) I already specified the socket=/tmp/mysql_2.sock in mysql,cnf when I started the mysql server, why was the socket '/var/run/mysqld/mysqld.sock' called later?
4) Did I install the DBI and DBD::mysql modules correctly? I am not sure. I installed them using CPAN as root.
$ perl -MCPAN -e shell
cpan> o conf makepl_arg "mysql_config=/path_to_mysql_dir/bin/mysql_config"
cpan> install Data:
umper
cpan> install DBI
cpan> force install DBD::mysql
I didn't see error when I check with
$ perl -MDBI -e 1
$ perl -MDBD::mysql -e 1
but I received the same DBI error as above when I installed DBD:mysql, such as
t/32insert_error.t ................... skipped: ERROR: DBI connect('test','root',...) failed: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) at t/32insert_error.t line 14.
Sorry about the long text, hope it helps.
Comment
-
-
Your problem is related to mysql install.
See these two threads for possible solutions: http://stackoverflow.com/questions/1...un-mysqld-mysq
A frequent error message received when using the mysql command line utility is: Can’t connect to local MySQL server through socket ‘/tmp/mysql.sock’ While this error message can be frustrating, the solution is simple. When connecting to a MySQL server located on the local system, the mysql client connects through a local file called a socket […]
Comment
-
Latest Articles
Collapse
-
by GATTACATLove this - good data definitely starts from good input, and poor input can only give relatively poor data. I particularly like the mention of Nanodrop/absorbance based methods for quantification. It's such a toss up if you'll get an accurate reading or what amounts to a randomly generated number, and a lot of library/sequencing related issues can be traced back to poor quant.
-
Channel: Articles
07-01-2026, 11:43 AM -
-
by SEQadmin2
I’m not a sequencing expert. I’m a purification scientist who uses NGS to evaluate workflows my group develops. With this perspective, we think about the sample first and the NGS workflow second. The sequencer is an exceptionally honest reporter, but it can only report on what you give it, so whether you get clean, interpretable data from an NGS workflow is largely determined before you begin.
Here are nine questions we think about, in roughly the order they matter, before...-
Channel: Articles
-
ad_right_rmr
Collapse
News
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SEQadmin2, Yesterday, 11:08 AM
|
0 responses
7 views
0 reactions
|
Last Post
by SEQadmin2
Yesterday, 11:08 AM
|
||
|
Started by SEQadmin2, 06-30-2026, 05:37 AM
|
0 responses
11 views
0 reactions
|
Last Post
by SEQadmin2
06-30-2026, 05:37 AM
|
||
|
Started by SEQadmin2, 06-26-2026, 11:10 AM
|
0 responses
19 views
0 reactions
|
Last Post
by SEQadmin2
06-26-2026, 11:10 AM
|
||
|
Whole-Genome Sequencing Traces Faroe Islands Ancestry to a North Atlantic Founder Population
by SEQadmin2
Started by SEQadmin2, 06-17-2026, 06:09 AM
|
0 responses
53 views
0 reactions
|
Last Post
by SEQadmin2
06-17-2026, 06:09 AM
|
Comment