1 / 13

INSTALACION DE UN SERVIDOR DE CORREO Y SERVICIO APACHE EN UBUNTU 11. 04

INSTALACION DE UN SERVIDOR DE CORREO Y SERVICIO APACHE EN UBUNTU 11. 04. Por: JULIO EDUARDO MEJIA. INSTALACION DE UBUNTU 11.04. Iniciar el equipo con el CD de instalación de Ubuntu 11.04. Dar click en Install para iniciar la instalación. Seleccionar idioma Seleccionar Teclado

fadey
Download Presentation

INSTALACION DE UN SERVIDOR DE CORREO Y SERVICIO APACHE EN UBUNTU 11. 04

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. INSTALACION DE UN SERVIDOR DE CORREO Y SERVICIO APACHE EN UBUNTU 11. 04 Por: JULIO EDUARDO MEJIA

  2. INSTALACION DE UBUNTU 11.04 • Iniciar el equipo con el CD de instalación de Ubuntu 11.04. • Dar click en Install para iniciar la instalación. • Seleccionar idioma • Seleccionar Teclado • Seleccionar zona horaria • Crear particiones: • Partición root de 7 G • Partición Swap de 1 G • Partición para archivos, del tamaño que se desee. • Se instala el sistema operativo

  3. INSTALACION DE UBUNTU 11.04 • Se crea el usuario. • Se finaliza la instalación y se reinicia el equipo. • Se inicia la sesión • Se actualiza el sistema operativo, si no se hizo en la instalación • /etc/apt/sources.list • Nota: Hasta este momento está instalado el sistema operativo en modo comando y es necesario instalarlo en modo gráfico.

  4. MODO GRAFICO DE UBUNTU SERVER 11.04 Ubuntu Server no viene en modo gráfico, ya que supuestamente está totalmente optimizado para trabajar como servidor. Para tener modo gráfico se hace necesario instalar los siguientes programas: x-window-system-core: $ sudo aptitudeinstallxorg gnome, kde,icewm,fluxbox, etc: $ sudo aptitudeinstall xfce4 kubuntu-desktop: $ sudo aptitudeinstallkubuntu-desktop ubuntu-desktop: $ sudo aptitudeinstallubuntu-desktop xubuntu-desktop: $ sudo aptitudeinstallxubuntu-desktop

  5. ACTUALIZACION ULTERIOR DE PAQUETES Es preferible antes de comenzar a instalar lo relacionado con el servidor de correos, tener actualizado el catálogo de paquetes: $ sudo apt-getupdate

  6. INSTALACION DEL POSTFIX • Se instala postfix: #apt-getinstallpostfix • Se configura el postfix y para ello se edita: /etc/postfix/main.cf • haciéndose las siguientes modificaciones: • # Entrega de correo en directorio. • home_mailbox = Maildir/ • # Redes permitidas: • Mynetworks = 127.0.0.0/8, 192.168.0.0/8 • # Dominio (Parte derecha del correo @) • mydestination = ubuntu-laptop. Localhost.localdomain, • localhost, so-fisicc-idea.com • Ahora se reinicia el servidor de correo: • # /etc/init.d/postfixrestart • Nota: el servidor de envío de correo queda instalado por el puerto 25

  7. INSTALACION DE COURIER (ENTREGA DE CORREO) Se instalan los siguientes paquetes: # apt-getinstallcourier-pop # apt-getinstallcourier-imap # apt-getinstallcourier-pop-ssl # apt-getinstallcourier-imap-ssl Queda listo el servicio de entrega de correo por el puerto 110

  8. CONFIGURACION DEL POSTFIX Para configurar el postfix se utiliza la opción: INERNET SITE Pedirá el Systemfilename: es el nombre del servidor

  9. REINICIACION DE COURIER (ENTREGA DE CORREO) Se reinician los siguientes programas: # /etc/init.d/courier-pop restart # /etc/init.d/courier-imaprestart # /etc/init.d/courier-pop -sslrestart # /etc/init.d/courier-imap-sslrestart

  10. CREACION DE USUARIOS Y DE PASSWORDS Se crean los usuarios con el siguiente comando: # useradd jmejia17 Se asignan los passwords con el siguiente comando: # passwd jmejia17

  11. CREACION DE DIRECTORIOS PARA ENTREGA DE CORREOS # maildirmake /etc/skel/Maildir # maildirmake /etc/skel/Maildir/.Drafs # maildirmake /etc/skel/Maildir/.Sent # maildirmake /etc/skel/Maildir/.Trash # maildirmake /etc/skel/Maildir/.Templates

  12. ASIGNACION DE DIRECTORIO DE CORREO A UN USUARIO # cp –r /etc/skel/Maildir/home/jmejia17 # chown –R jmejia17:jmejia17 /home/jmejia17/Maildir # chmod –R 700 /home/jmejia17/Maildir

  13. APACHE2 • Se instala el software: • #apt-getinstall apache2 • Se inicia el servicio de Apache2: • #/etc/init.d/apache2/restart • Se prueba el servicio abriendo el navegador y escribiendo: • http://localhost • Debe aparecer el Index

More Related