Comment by [email protected]:
mysql install instructions:
{{{
yum install mysql mysql-server mysql-devel
/etc/init.d/mysqld start
mysql
}}}
set root password on mysql
{{{
mysql> USE mysql;
mysql> UPDATE user SET Password=PASSWORD('new pass here') WHERE user='root';
mysql> FLUSH PRIVILEGES;
}}}
logging into mysql afterward
{{{
mysql -u root -p
Enter Password: <your password>
}}}
make mysqld auto start on system boot
{{{
chkconfig mysqld on
}}}
For more information:
http://code.google.com/p/openmeetings/wiki/InstallationCentOS5
--
You received this message because you are subscribed to the Google Groups
"OpenMeetings developers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/openmeetings-dev?hl=en.