CentOS 6.4 php环境配置以及安装wordpress
1. nginx php-rpm 包升级
1 2 | sudo rpm -Uvh http: //download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm sudo rpm -Uvh http: //rpms.famillecollet.com/enterprise/remi-release-6.rpm |
2. 安装mysql
1 | sudo yum install mysql mysql-serversudo /etc/init.d/mysqld restartsudo /usr/bin/mysql_secure_installation |
3. 安装nginx
1 2 | sudo yum install nginx sudo /etc/init.d/nginx start |
这时你可以直接访问ip或者域名,查看nginx是否安装成功
4. 安装php
1 | sudo yum --enablerepo=remi install php-fpm php-mysql |
5. 配置php
1 | sudo vi /etc/php.ini#cgi.fix_pathinfo=1cgi.fix_pathinfo=0doc_root = /usr/share/nginx/html |
6. 配置nginx
默认的配置文件nginx.conf
1 | sudo vi /etc/nginx/nginx.conf<br>processer = 4 |
1 | sudo vi /etc/nginx/conf.d/ default .conf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | # # The default server # server { listen 80; server_name example.com; location / { root /usr/share/nginx/html; index index.php index.html index.htm; } error_page 404 /404.html; location = /404.html { root /usr/share/nginx/html; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # location ~ \.php$ { root /usr/share/nginx/html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } |
1) location 下
添加index.php
2) root 可以改成你想要的位置,如/var/www/wordpress
3)server_name 改成你的域名或者ip或者localhost
4) location ~ \.php$ { 下面的root要和上面location的一样
5)fastcgi_param 帮助php解释器在document root找到php脚本
7. 配置php-fpm
1 | sudo vi /etc/php-fpm.d/www.conf |
替换apahce到nginx
1 2 3 4 5 6 7 8 9 | [...] ; Unix user/ group of processes ; Note: The user is mandatory. If the group is not set , the default user's group ; will be used. ; RPM: apache Choosed to be able to access some dir as httpd user = nginx ; RPM: Keep a group allowed to write in log dir. group = nginx [...] |
重启php-fpm
1 | sudo service php-fpm restart |
8.添加php测试页面
1 | sudo vi /usr/share/nginx/html/info.phpsudo service nginx restart |
9. 添加开机自动重启
1 2 3 | sudo chkconfig --levels 235 mysqld on sudo chkconfig --levels 235 nginx on sudo chkconfig --levels 235 php-fpm on |
上面环境配置好以后就可以安装wordpress了
1. 下载并解压
1 | wget http: //wordpress.org/latest.tar.gztar -xzvf latest.tar.gz |
2. 创建数据库
1 2 3 4 5 6 7 | mysql -u root -p CREATE DATABASE wordpress; CREATE USER wordpressuser@localhost; SET PASSWORD FOR wordpressuser@localhost= PASSWORD( "password" ); GRANT ALL PRIVILEGES ON wordpress.* TO wordpressuser@localhost IDENTIFIED BY 'password' ; FLUSH PRIVILEGES; exit |
3. 配置wordpress
复制配置文件并配置
1 2 3 4 5 6 7 8 9 | cp ~/wordpress/wp-config-sample.php ~/wordpress/wp-config.phpvi ~/wordpress/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' ); /** MySQL database username */ define( 'DB_USER' , 'wordpressuser' ); /** MySQL database password */ define( 'DB_PASSWORD' , 'password' ); |
复制wordpress到nginx的root目录下,
1 | sudo cp -r ~/wordpress/* / var /www/html |
可能需要php-gd
1 | sudo yum install php-gd |
重启nginx
1 | sudo service httpd restart |
4 安装wordpress
访问你的域名http:xxx.com/wp-admin/install.php 来安装,很简单。
这样一个wordpress的博客配置就完成了。
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· 继承的思维:从思维模式到架构设计的深度解析
· 如何在 .NET 中 使用 ANTLR4
· 后端思维之高并发处理方案
· 理解Rust引用及其生命周期标识(下)
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· 当职场成战场:降职、阴谋与一场硬碰硬的抗争
· ShadowSql之.net sql拼写神器
· Excel百万数据如何快速导入?
· 无需WebView,Vue也能开发跨平台桌面应用