Home > Alumnus Blog > FreeBSD Mail Server – 1 – MySQL Install

FreeBSD Mail Server – 1 – MySQL Install

April 16th, 2009 Leave a comment Go to comments

MySQL is a database application that is very fast and very reliable. You can read more about it by visiting http://www.mysql.com/.
Install MySQL via ports:
#cd /usr/ports/databases/mysql50-server #make all install clean
Add mysqld to system startup:
#echo ‘mysql_enable=”YES”‘ >> /etc/rc.conf
Start MySQL:
#/usr/local/etc/rc.d/mysql-server start
Secure MySQL root user account and delete nameless user(s):
#mysql -u root mysql
>UPDATE user SET Password=PASSWORD(’mysql_root_password’) WHERE User=’root’;
>DELETE [...]

Read original post at http://devnix.wordpress.com/2009/04/16/freebsd-mail-server-1-mysql-install/

Related posts:

  1. FreeBSD Mail Server – 6 – Postfixadmin Install
  2. FreeBSD Mail Server – 3 – Postfix Install
  3. FreeBSD Mail Server – 2 – Dovecot Install
  4. FreeBSD Mail Server – 5 – PHP Install
  5. FreeBSD Mail Server – 10 – Squirrelmail Install
  6. FreeBSD Mail Server – 4 – Apache Install
  7. FreeBSD Mail Server – 9 – PEAR Install
  8. FreeBSD Mail Server – 8 – ClamAV Install
  9. Step by Step Setup Postfix Mail Server on FreeBSD
  10. Step by Step Setup Postfix Mail Server on FreeBSD

Categories: Alumnus Blog Tags:
  1. No comments yet.
  1. No trackbacks yet.