trouble starting mysqld daemon

2006-12-31 Thread Jeff Jones

Hi!

I'm a rookie, so bear with me...

Keep getting:

Starting mysqld daemon with databases from /opt/mysql/mysql/data
Stopping server from pid file /opt/mysql/mysql/data/unknown.pid
061228 17:16:04 mysqld ended

After this command  bin/safe_mysqld --user=mysql 

Very open to suggestions

Thanks

_
Find sales, coupons, and free shipping, all in one place!  MSN Shopping 
Sales  Deals 
http://shopping.msn.com/content/shp/?ctid=198,ptnrid=176,ptnrdata=200639



--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: trouble starting mysqld daemon

2006-12-31 Thread Jeff Jones


Thanks!

I think I'm in business.  I changed some privileges, examined the logs 
(which helped a lot), and initialized the database again using 
mysql_install_db --user=mysql --datadir=/opt/mysql/mysql/data


now onto PHP

take care

Jeff



From: [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: Jeff Jones [EMAIL PROTECTED]
CC: mysql@lists.mysql.com
Subject: Re: trouble starting mysqld daemon
Date: Sun, 31 Dec 2006 14:23:53 -0500 (EST)


Check for .err text log files ..  they are probably in
/opt/mysql/mysql/data/

called servername.err
  servername is the hostname of your box.


On Thu, 28 Dec 2006, Jeff Jones wrote:

 Hi!

 I'm a rookie, so bear with me...

 Keep getting:

 Starting mysqld daemon with databases from /opt/mysql/mysql/data
 Stopping server from pid file /opt/mysql/mysql/data/unknown.pid
 061228 17:16:04 mysqld ended

 After this command  bin/safe_mysqld --user=mysql 

 Very open to suggestions

 Thanks

 _
 Find sales, coupons, and free shipping, all in one place!  MSN Shopping
 Sales  Deals
 http://shopping.msn.com/content/shp/?ctid=198,ptnrid=176,ptnrdata=200639


 --
 MySQL General Mailing List
 For list archives: http://lists.mysql.com/mysql
 To unsubscribe:
http://lists.mysql.com/[EMAIL PROTECTED]



--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:
http://lists.mysql.com/[EMAIL PROTECTED]




_
Type your favorite song.  Get a customized station.  Try MSN Radio powered 
by Pandora. http://radio.msn.com/?icid=T002MSN03A07001



--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Design question

2001-06-18 Thread Jeff Jones

I have a design problem I was hoping some of you could help me out with.  I am writing 
a shopping
cart system (as if there wasn't enough already) and I have one problem that has me 
stumped.

A person can order more than one item of course.  So let's say they order a kite and 
some string.
Both of these have product numbers, and the overall order has an order number.  I am 
trying to
figure out how to design a table ( or tables ) so I can keep track of the different 
products that
are ordered during one order.  I need to keep track of the product number, quantity, 
and price
for that product.  For instance:

Order # Products
-  --
1   222 : Qty 1: 12.00 # 333 : Qty 2 : 14.00

That is order number 1 and that person ordered one of product # 222 @ 12.00 and 2 
of product # 333 @14.00.

I would appreciate any assistance any of you might be able to offer.  If I wasn't 
clear enough, let
me know and I will try and explain it better.

Thanks.

Jeff Jones

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




non-standard socket - fixed

2001-03-21 Thread Jeff Jones

Well as soon as I sent that previous message, I figured out
how to accomplish what I needed.

Thanks anyways.

Jeff Jones


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




non-standard socket

2001-03-21 Thread Jeff Jones

I am using mysqld_multi to have several different mysql servers start.  I have
finally gotten it to work with php when I connect to a non-standard socket, 
such as /tmp/mysql.sock2.  Does anyone know how to connect to a database with
perl through that socket?  I have tried the following with no luck:

my($port) = '/tmp/mysql.sock2';
my($mysql) = "DBI:mysql:webhost:localhost:$port";
$dbh = DBI-connect($mysql, 'user', 'pass');

But it will not establish the connection.  Has anyone done this before or is
it even possible with the Perl DBI?

Thanks for the help.

Jeff Jones


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




configuration advice needed

2001-03-07 Thread Jeff Jones

Hello All.  I have some questions / requests for advice that I hope some of you
could help me with.

I have alot of virtual domains that I want to provide MySQL access to.  These 
virtual domains are spread out across several servers right now and continue
to grow.  On each of these servers I currently run a mission critical database
that cannot be jeopardized in any way.  When I say jeopardized, I do not mean
security, I mean that I don't want to risk losing connectivity with that 
database because of heavy user access to their databases.

Now to the nitty gritty.  I have two options here on how to setup access for 
these users:

1.  Set up a dedicated server for all users to have their individual databases
run off of.

2.  Have each user's database run off of the server that they are located on.

If I do it this way, I would like a seperate mysql server to use a 
different port than the one the mission critical db uses.  I have tried
this before per the docs, but had no luck with it.

I would also like to be able to store the user's database inside of their
home directory instead of say /usr/local/mysql/var/.  I am also 
unclear as to how and make that happen.

Option #1 seems relatively straight forward.  However Option #2 is my preferred
method so I don't have to shell out the extra bucks for another server.  If anyone 
could provide some advise on how to make this work, I would greatly appreciate it.  
If I am totally off my rocker here, I would also greatly appreciate if you would
let me know :)

Thanks to everyone in advance.

Jeff Jones


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php