Thanks :)<br><br><div class="gmail_quote">On Fri, Nov 13, 2009 at 4:09 AM, John R Pierce <span dir="ltr"><<a href="mailto:pierce@hogranch.com">pierce@hogranch.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div class="im">Victor Subervi wrote:<br>
> What do? Also, where is the data usually stored? The server co. backed<br>
> that up, but I don't know which file it would be.<br>
<br>
<br>
</div>With the CentOS version of mysql, its typically in /var/lib/mysql and<br>
the mysql config file is /etc/my.cnf<br>
<br>
<br>
after installing the mysql server with yum as ceejay explained, do...<br>
<br>
    # service mysqld start<br>
    # chkconfig mysqld on<br>
<br>
(the first command starts the server, the second command configures the<br>
system so the mysql server will automatically start when rebooted)<br>
<br>
<br>
if the server is properly running, then you'll see at least one process<br>
if you ...<br>
<br>
# ps uww -C mysqld<br>
USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND<br>
mysql     3193  0.0  1.6 136920 16608 ?        Sl   Sep29   0:20<br>
/usr/libexec/mysqld --basedir=/usr --datadir=/var/lib/mysql --user=mysql<br>
--pid-file=/var/run/mysqld/mysqld.pid --skip-external-locking<br>
--socket=/var/lib/mysql/mysql.sock<br>
<div><div></div><div class="h5"><br>
<br>
_______________________________________________<br>
CentOS mailing list<br>
<a href="mailto:CentOS@centos.org">CentOS@centos.org</a><br>
<a href="http://lists.centos.org/mailman/listinfo/centos" target="_blank">http://lists.centos.org/mailman/listinfo/centos</a><br>
</div></div></blockquote></div><br>