- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: mysql server problem
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2004 11:01 PM
10-26-2004 11:01 PM
mysql server problem
expecting your reply soon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2004 11:24 PM
10-26-2004 11:24 PM
Re: mysql server problem
try to create a link to the file:
e.g.
ln -s /var/lib/mysql/mysql.sock /tmp/mysql.sock
regards
Yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2004 11:32 PM
10-26-2004 11:32 PM
Re: mysql server problem
This file has been, probably, deleted (it's problem with files in /tmp.
You can change this file location in my.cnf or protect access to this file.
See http://www.nexen.net/docs/mysql/annotee/problems-with-mysql.sock.php (in french).
Rgds
JMB
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2004 11:50 PM
10-26-2004 11:50 PM
Re: mysql server problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2004 07:06 PM
10-27-2004 07:06 PM
Re: mysql server problem
Your mysql is in other folder, perhaps /var/opt/mysql.
Or use find command:
find / -name "*mysql.sock*" -follow -print
to find where is this file.
So i'm not sure it's a good idea to link it this a file in /tmp. Change location in the mysql config.
Rgds
JMB
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2004 10:04 PM
10-27-2004 10:04 PM
Re: mysql server problem
thanks for you efforts . I found the solution from mysql site . it is known problem . i am using Hp-ux 11.11 in whih i need to apply two pathes related to streams and sockets . I applied it and tested worked ine
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2004 12:43 AM
10-28-2004 12:43 AM
Re: mysql server problem
Try to start it in background
# mysql
ERROR 2002: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)
./safe_mysqld
Starting mysqld daemon with databases from /usr/local/var
[1]+ Stopped ./safe_mysqld
# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Type 'help;' or '\h' for help. Type '\c' to clear the buffer
mysql>
HTH.