GUIA PARA INSTALACION Y CONFIGURACION DE SERVIDORES LINUX.rtf
Enviado por pichoto718 • 16 de Febrero de 2013 • 1.490 Palabras (6 Páginas) • 551 Visitas
P
CENTOS 5.3
GUIA PARA INSTALACION Y CONFIGURACION DE SERVIDORES LINUX
Primero debemos asegurarnos de tener una buena maquina, ya que es parte importante en el buen desempeño de un servidor web.
- Escogemos el idioma del sistema operativo Español (recomendado), siguiente.
- Escogemos el idioma del teclado Español (recomendado), siguiente.
-Click en “suprimir particiones Linux en…” y escoger crear diseño personalizado, siguiente.
- Si hay particiones se deben eliminar debe quedar asi:
Discos duros
/dev/sda
Libre
• Seleccionamos libre, luego nuevo y creamos:
/ (raíz) ext3 30000 forzar a partición primaria
/var (php, archivos) ext3 60000 forzar a partición primaria
/mnt/disk2 (backups) ext3 50000 forzar a partición primaria
Swap(virtual) 2048
• Luego modificamos /mnt/disk2 y chequeamos completar hasta el tamaño máximo, siguiente.
• Damos siguiente.
• En el nombre de host seleccionamos •Manualmente Nombre_servidor
•
• Damos click en modificar y colocamos la ip del servidor y la mascara, siguiente.
• Seleccionamos en el mapa a bogota – colombia quitamos el reloj del sistema utiliza UTC, siguiente.
• Colocamos contraseña del root, siguiente.
• Luego selecionamos solo la opción server y selecionamos personalizar ahora, siguiente.
Esta es la configuración básica:
Paquetes Opcionales
APLICACIONES EDITORES. 2:vim – enhanced.
INTERNET BASADA EN TEXTO. Los que vienen por defecto.
SERVIDORES BASE DE DATOS MYSQL 1:mod_auth_mysql-3.0.0.3.
Mysql_server 5.0.45.
Php – mysql 5.1.6.
Dejar el resto.
HERRAMIENTAS CONFIGURACION SERVIDORES System – config – httpd.
System – config – samba.
SERVIDOR WEB 1:mod_auth_mysql-3.0.0.3.
Php – mysql – 5.1.6-23.
Quitar tux.
Quitar weballizer.
SERVIDOR DE ARCHIVOS WINDOWS System – config – samba.
SISTEMA BASE BASE Quitar sendmail.
Siguiente.
Luego el sistema comprueba las dependencias entre los paquetes, y comienza en proceso de formateo e instalación del sistema, seguidamente le pedirá que reinicie el equipo.
Después de reiniciar damos skip.
CONFIGURACION DEL SERVIDOR
CONFIGURACION DE PHP.INI
Nos logueamos como root y :
Root-servidor>vim /etc/php.ini
…
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
max_execution_time = 30 ; Maximum execution time of each script, in seconds
max_input_time = 60 ; Maximum amount of time each script may spend parsing request data
memory_limit = 128M ; Maximum amount of memory a script may consume
…
; Examples:
;
; - Show all errors, except for notices and coding standards warnings
;
error_reporting = E_ALL & ~E_NOTICE
;
; - Show all errors, except for notices
;
;error_reporting = E_ALL & ~E_NOTICE | E_STRICT
;
; - Show only errors
;
;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR
;
; - Show all errors, except coding standards warnings
;
;error_reporting = E_ALL
; Print out errors (as a part of the output). For production web sites,
; you're strongly encouraged to turn this feature off, and use error logging
; instead (see below). Keeping display_errors enabled on a production web site
; may reveal security information to end users, such as file paths on your Web
; server, your database schema or other information.
display_errors = ON
; Even when display_errors is on, errors that occur during PHP's startup
…
; set it to be empty.
;
; PHP's built-in default is text/html
default_mimetype = "text/html"
default_charset = "iso-8859-1"
; Always populate the $HTTP_RAW_POST_DATA variable.
;always_populate_raw_post_data = On
…
;;;;;;;;;;;;;;;;;;;
; Module Settings ;
;;;;;;;;;;;;;;;;;;;
[Date]
; Defines the default timezone used by the date functions
date.timezone = 'America/Bogota'
[Syslog]
; Whether or not to define the various syslog variables (e.g. $LOG_PID,
; $LOG_CRON, etc.). Turning it off is a good idea performance-wise. In
…
Luego guardamos el archivo con ESC :wq y enter.
CONFIGURACION DEL SAMBA
Root>vim /etc/samba/smb.conf
Debe quedar de la siguiente manera:
workgroup = hospital
server string = servidor
map to guest = bad user
log file = /var/log/samba/log.%m
max log size = 50
security = user
passdb backend = tdbsam
load printers = no
cups options = raw
[BACKUPS]
Comment = COPIAS DE SEGURIDAD
path = /mnt/disk2/backups
public = yes
writable = yes
printable = no
[RIPS]
CommEnt = RIPS
path = /var/www/html/sihos/modulos/generips/rips
public = yes
writable = yes
printable = no
[ARCHIVOS]
Comment = ARCHIVOS
path = /var/www/html/sihos/archivos
public = yes
writable = yes
printable = no
[HTML]
comment = html
path = /var/www/html
valid users = root
public = no
writable = yes
printable = no
Para cambiar la contraseña del samba
Root>smbpasswd –a root ->enter
Digitamos la clave
CONFIGURAR EL MODO DE ARRANQUE
Root>vim /etc/inittab
...