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
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'wordpress'); nombre de base de datos antes creado
/** MySQL database username */
define('DB_USER', ''); nombre de usuario antes creado
i
/** MySQL database password */
define('DB_PASSWORD', ''); contraseña de usuario antes creado
/** MySQL hostname */
define('DB_HOST', 'localhost');
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
8. Finalizar instalacion wordpress
8.1-Ingresar via browser a ip de servidor wordpress y configurar los siguientes parametros
8.2 presionar boton install
9.- Configurar IPTables para permitir acceso a servidor web
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
10.-configurar inicio de servicios automaticos al iniciar S.O
chkconfig mysqld on --level 3
chkconfig httpd on --level 3
11.-Configurar apache como dueño carpetas wordpress
chown apache -R wordpress/
12. Configurar permisos carpetas wordpress
find /path/to/your/wordpress/install/ -type d -exec chmod 755 {} \;
find /path/to/your/wordpress/install/ -type f -exec chmod 644 {} \;
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
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'wordpress'); nombre de base de datos antes creado
/** MySQL database username */
define('DB_USER', ''); nombre de usuario antes creado
i
/** MySQL database password */
define('DB_PASSWORD', ''); contraseña de usuario antes creado
/** MySQL hostname */
define('DB_HOST', 'localhost');
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
8. Finalizar instalacion wordpress
8.1-Ingresar via browser a ip de servidor wordpress y configurar los siguientes parametros
8.2 presionar boton install
9.- Configurar IPTables para permitir acceso a servidor web
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
10.-configurar inicio de servicios automaticos al iniciar S.O
chkconfig mysqld on --level 3
chkconfig httpd on --level 3
11.-Configurar apache como dueño carpetas wordpress
chown apache -R wordpress/
12. Configurar permisos carpetas wordpress
find /path/to/your/wordpress/install/ -type d -exec chmod 755 {} \;
find /path/to/your/wordpress/install/ -type f -exec chmod 644 {} \;
Comentarios
Publicar un comentario