|
| ||||||||||
| Tags: error message, lucid, mysql, sudo, upstart |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| Unable to start MySQL by using Upstart on Lucid
Code: sudo -u mysql mysqld Quote:
|
|
#2
| |||
| |||
| Re: Unable to start MySQL by using Upstart on Lucid
I think you need to start MySQL by using below mentioned commands. Code: sudo service mysql restart Code: sudo service mysql start |
|
#3
| |||
| |||
| Re: Unable to start MySQL by using Upstart on Lucid
after going through mysqld upstart job at /etc/init/mysqld.conf and you will be see ‘start on (net-device-up’. Mysql is configure to bind with a specific address and it fails to begin if network interface does not seems to be up. I recommend that you should update mysqld upstart job to ‘start on (net-device-up IFACE=ethX’ to start mysqld only when correct interface is up. |
|
#4
| |||
| |||
| Re: Unable to start MySQL by using Upstart on Lucid
You should browse to /etc/init/mysql.conf. Here you have to edit Code: # MySQL Service Code: description "MySQL Server"
author "Mario Limonciello <superm1@ubuntu.com>"
start on (net-device-up
and local-filesystems
and runlevel [2345])
stop on runlevel [016]
respawn |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "Unable to start MySQL by using Upstart on Lucid" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Unable to setup Power Mac G4 Cube running with Lucid | Ra.One | Portable Devices | 6 | 24-01-2012 09:22 AM |
| unable to mount CDROM DVD drives after upgrading from Ubuntu 9.10 to 10.04 LTS Lucid Lynx. | Biswanath1 | Operating Systems | 9 | 22-12-2011 07:26 AM |
| Unable to install MySQL and MySQL Workbench on Linux mint 10 | Zared | Windows Software | 4 | 13-01-2011 12:08 AM |
| Unable to save Image from the web URL into mySQL | Conraad | Software Development | 5 | 25-02-2010 03:35 PM |
| Mysql Error : Can't connect to local mysql server through socket ' var lib mysql mysql.sock' 2 | roshan45 | Software Development | 3 | 07-11-2009 08:36 PM |