Entradas

Mostrando las entradas de mayo, 2015

Monitoreo de trafico de red en tiempo real con NLOAD en Linux Centos/RHEL

Instalacion: Instalacion de repositorios EPEL ## RHEL/CentOS 7 64-Bit ## # wget http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm # rpm -ivh epel-release-7-5.noarch.rpm ## RHEL/CentOS 6 64-Bit ## # wget http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm # rpm -ivh epel-release-6-8.noarch.rpm ## RHEL/CentOS 5 32-Bit ## # wget http://download.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm # rpm -ivh epel-release-5-4.noarch.rpm ## RHEL/CentOS 5 64-Bit ## # wget http://download.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm # rpm -ivh epel-release-5-4.noarch.rpm yum install nload nload [options] device1 ejemplo: nload eth0

Instalacion de Wordpress en Linux Centos

Instalacion LAMP 1.Instalar Apache yum install httpd 2. Instalar My SQL yum install mysql mysql-server 3. instalar php yum install php php-mysql 4.-Descargar wordpress cd tmp   tar -xvzf latest.tar.gz -C /var/www/html   5.-Configurar MySQL                  (por seguridad configurar otros usuario, contraseña y nombre de base de datos)    1 mysql -u root -p      2 CREATE USER nameuser@localhost IDENTIFIED BY "password";                3  create database nombrebd;                                              4 GRANT ALL ON nombrebd.* TO nameuser@localhost;                       6-.Configurar Virtualhost Apache vi /etc/httpd/conf/httpd.conf   ServerAdmin mail  DocumentRoot /var/www/html/wordpress   ServerName wordpress   ErrorLog /var/log/httpd/wordpress-error-log   CustomLog /var/log/httpd/wordpress-acces-log common 7.- Configurar instalacion wordpress cd /var/www/html/wordpress cp wp-config-sample.php wp-config.php vi wp-config.php /

Iniciar, parar y reiniciar servicio ssh en ubuntu

-Para iniciar :~# /etc/init.d/ssh start -Para detener :~# /etc/init.d/ssh stop -Para reiniciar :~# /etc/init.d/ssh restart