博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos7.3安装wordpress
阅读量:5255 次
发布时间:2019-06-14

本文共 1620 字,大约阅读时间需要 5 分钟。

一、安装并配置数据库

1.安装mariadb

#yum install -y mariadb-server mariadb

2.启动数据库并设置开机自启

#systemctl start mariadb &&systemctl enable mariadb

3.初始化数据库

#mysql_secure_installation

4.登录数据库并创建wordpres库

#mysql -u root -p

>create database wordpress;
>grant all privileges on wordpress.* to 'wordpress'@'localhost' identified by 'wordpress';
>grant all privileges on wordpress.* to 'wordpress'@'%' identified by 'wordpress';

二、安装Apache+php7

1.安装apache

#yum install -y httpd &&systemctl enable httpd &&systemctl start httpd
2.安装php
#yum install -y epel-release && rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
#yum install php70w.x86_64 php70w-cli.x86_64 php70w-common.x86_64 php70w-gd.x86_64 php70w-ldap.x86_64 php70w-mbstring.x86_64 php70w-mcrypt.x86_64 php70w-mysql.x86_64 php70w-pdo.x86_64 -y

3.配置apache

删除欢迎页

#rm -rf /etc/httpd/conf.d/welcome.conf

#vi /etc/httpd/conf/httpd.conf

  DirectoryIndex index.php index.html  #添加对PHP的支持

三、下载wordpress中文版

#cd /opt

#yum install -y wget
#wget https://cn.wordpress.org/wordpress-4.9.1-zh_CN.tar.gz 

#tar -xzvf wordpress-4.9.1-zh_CN.tar.gz 

#cp -r wordpress/* /var/www/html/

四、重启服务apache#systemctl restart httpd

五、访问http://your_ip

如果报错,更改html属主,属组   (不改属组属主在后期升级或导致没有权限创建文件或写入)

chown apache. -R html/  

附:更改对上传文件大小的限制:

#vi /etc/php.ini  

  #找到下面3行,更改值

upload_max_filesize = 2Mpost_max_size = 8Mmax_execution_time = 30

 六、解决安装WordPress主题及插件需要输入FTP问题(https://jingyan.baidu.com/article/4f34706efc1237e387b56da4.html)(没有验证过)

在wp-config.php文件中添加脚本方式

define("FS_METHOD","direct");

define("FS_CHMOD_DIR", 0777);

define("FS_CHMOD_FILE", 0777);

转载于:https://www.cnblogs.com/gaoyuanzhi/p/8037489.html

你可能感兴趣的文章
python常用模块之sys, os, random
查看>>
HDU 2548 A strange lift
查看>>
Linux服务器在外地,如何用eclipse连接hdfs
查看>>
react双组件传值和传参
查看>>
[Kaggle] Sentiment Analysis on Movie Reviews
查看>>
价值观
查看>>
mongodb命令----批量更改文档字段名
查看>>
使用 SharedPreferences 分类: Andro...
查看>>
TLA+(待续...)
查看>>
题解: [GXOI/GZOI2019]与或和
查看>>
MacOS copy图标shell脚本
查看>>
国外常见互联网盈利创新模式
查看>>
Oracle-05
查看>>
linux grep 搜索查找
查看>>
Not enough free disk space on disk '/boot'(转载)
查看>>
android 签名
查看>>
vue项目中使用百度统计
查看>>
android:scaleType属性
查看>>
SuperEPC
查看>>
mysql-5.7 innodb 的并行任务调度详解
查看>>