Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I'm replacing a previous server admin on a Ubuntu 10.04.1 LTS.
I have an issue with the error logs from mysql.
They are empty and they keep being empty. :(
I have edited /etc/mysql/my.cnf
general_log_file = /var/log/mysql/mysql.log
general_log = 1
log_error = /var/log/mysql/error.log
Nothing is logged anyway
rw-rw---- 1 mysql adm 0 2012-04-23 01:09 error.log
What am i missing...
Related
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 5 years ago.
Improve this question
hello, i am trying to connect to my Mysql database but i get this error : MySQL error: Error: ER_ACCESS_DENIED_ERROR: Access denied for user 'hulken3'#'localhost' (using password: YES)
I have given this user "hulken3" all privileges but it's still not working,
You may need to give privilege to new user, so connect as root user and grant permission. Hope information in below site, gives you instruction on how to do that
http://dev.mysql.com/doc/refman/5.5/en/adding-users.html
My problem was that my Domain provider was blocking connections to the Mysql database. Thanks for your answers!
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 8 years ago.
Improve this question
I am trying to connect to mysql server on one.com's phpmyadmin.
I am using dreamweaver setting up (atleast trying) mysql connection, but i don't know what to put in the 'mysql server' box.
Any help please?
Thanks in advance!
An ip address (192.168.xxx.xxx) or server name.
It's either the hostname (eg. localhost or mysql.example.com) or the IP of the server (eg. 127.0.0.1). You can find example values in the documentation:
MySQL Server: mysql1.myDomain.com
User Name: dbuser
Password: myPassword
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I have two mysql db . One is 10.0.3.129, another is 10.0.3.139. I want to connect 10.0.3.129 from 10.0.3.139. Could someone tell me what should I do with 10.0.3.139 and 10.0.3.129 ? ? Thank you .
Make sure that MySQL port is open for connection from 10.0.3.139 to 10.0.3.129, verify using
telnet 10.0.3.129:<MySQL port> where you have configured your server.
Create a MySQL user in 10.0.3.139 like:
Create MySQL user in server by executing this query
CREATE USER 'test'#'10.0.3.139' IDENTIFIED BY 'test123';
and given proper permission to this user by using GRANT syntax.
Now try to connect using MySQL command line or any GUI tool from 10.0.3.139, it should work.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I have a linux server.
I installed ejabberd on the server.
I can go into administration url - http://ipaddress:5280/admin
I can not connect via jabber client to the server.
How do I set up a server for public connection?
Make sure:
a) You do not firewall the ports.
b) You have valid SRV records for your domain, for example,
_xmpp-client._tcp.example.net. 86400 IN SRV 5 0 5222 server.example.net.
_xmpp-server._tcp.example.net. 86400 IN SRV 5 0 5269 server.example.net.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
None of the SQL Jobs on my server are running. I've looked into this and got the message:
SQLServerAgent is not currently running so it cannot be notified of this action
How can I get SQL Server Agent to start running on SQL Server 2008?
net start SQLSERVERAGENT (for default instance, or just use services.msc or SQL Server Configuration Manager)