When I run mysqld in my virtualenv I get an error and abort message.
(nettuts)sez@sez-laptop:~/.virtualenvs$ mysqld
111220 15:22:59 [Warning] Can't create test file /var/lib/mysql/sez-laptop.lower-test
111220 15:22:59 [Warning] Can't create test file /var/lib/mysql/sez-laptop.lower-test
mysqld: Can't change dir to '/var/lib/mysql/' (Errcode: 13)
111220 15:22:59 [ERROR] Aborting
111220 15:22:59 [Note] mysqld: Shutdown complete
First I tried installing MySQL-python with
pip install -E default/ MySQL-python
and that gave me
Requirement already satisfied (use --upgrade to upgrade): '
MySQL-python in ./default/lib/python2.7/site-packages
Cleaning up...
then when I checked to see if it was installed it showed it was not
(nettuts)sez@sez-laptop:~/.virtualenvs$ pip freeze
Django==1.3.1
wsgiref==0.1.2
I then decided to install it with pip install MySQL-python and it installed just fine cause it showed
(nettuts)sez@sez-laptop:~/.virtualenvs$ pip freeze
Django==1.3.1
MySQL-python==1.2.3
wsgiref==0.1.2
How can I make MySQL-python run fine in a virtualenv?
UPDATE
When I run sudo invoke-rc.d mysql start this is what I get
(nettuts)sez@sez-laptop:~/.virtualenvs/nettuts$ sudo invoke-rc.d mysql start
Rather than invoking init scripts through /etc/init.d, use the service(8)
utility, e.g. service mysql start
Since the script you are attempting to invoke has been converted to an
Upstart job, you may also use the start(8) utility, e.g. start mysql
Then when I follow the direction to run start mysql this is what I get
(nettuts)sez@sez-laptop:~/.virtualenvs/nettuts$ sudo start mysql
start: Job is already running: mysql
So what is really going on here?
ps aux | grep mysqlI see/usr/sbin/mysqldprinted at the end of the first line. – s3z Dec 20 '11 at 18:45