A web-based resource for orthologous proteins of eukaryotic organisms.
r-base, mysql, perl
- new mysql user (yogyrw)
CREATE USER 'yogyrw'@'localhost' IDENTIFIED BY '[password]'
GRANT ALL PRIVILEGES ON *.* TO 'yogyrw'@'localhost'
- make
Notes:
- If you don't know the root password of the mysql server, you can do the following,
mysqld_safe --skip-grant-tables
use mysql;
update user set password=PASSWORD("NEW-ROOT-PASSWORD") where User='root';
flush privileges;
quit