My manager wanted me to install iRedMail but that was too difficult since I could not find the appropriate documentation. Since I wanted to use Roundcube I went to their website and found the following:
Next thing we need to do is decide what database backend we'll use. The most common is MySQL but others are PostgreSQL and SQLite. So once you decide, create a database with any name you want and grant privileges to a separate database user. It's recommended not to use an existing user or root.
With MySQL you can set up the database by issuing the following commands:
Code:
CREATE DATABASE roundcubemail;
GRANT ALL PRIVILEGES ON roundcubemail.* TO username@localhost IDENTIFIED BY 'password';
(of course you have to replace the database, username and password accordingly)
See the INSTALL file for information about setting up PostgreSQL or SQLite
If you are using MySQL, be sure to flush the users privileges when you add a new user or you will get a database connection error:
FLUSH PRIVILEGES;
1) what values for username, password, and database should I use?
2) How do I add a new user in mysql and how would I assign it a password?
I recommend strongly that you might want to install phpmyadmin on your box since it makes your life for some tasks much easier when working with MySQL.
Long story short, I have everything working in my SOHO which would include Postfix,Dovecot(imap),Roundcube,bind and is ready to recieve email from the outside using this tutorial:
https://workaround.org/ispmail/wheezy
I also setup my internal DNS server using:
https://wiki.debian.org/Bind9... (2 Replies)
Hi
I have two Sun Fire X4100 machines with Ubuntu 12.04 installed on them.
I am able to configure the Net Mgt port with an IP address and access the ILOM from the browser. I can also boot the Ubuntu installed and redirect the output.
The issue i have is that when i configure the network... (0 Replies)
Dear All...
I'm trying to install openssl (openssl-0.9.7m) on a Solaris box running 5.9...
I'm using the following command...
./Configure --openssldir=/data/ssl solaris-sparcv9-gcc
However when I do make I get the following...
root@adc8-winn:/usr/local/openssl-0.9.7m 0 # make... (1 Reply)