vsftpd 服务器报错:500 OOPS: vsftpd: refusing to run with writable root inside chroot()

今天安装vsftp服务器,在修改了 chroot_local_user 属性以后,发现进行客户端访问的时候会报错:500 OOPS: vsftpd: refusing to run with writable root inside chroot()
到网上查了资料,得到解 …
点击查看更多…

php-opcache php缓存

yum install php70u-opcache

vim /etc/php.ini

末尾添加
opcache.memory_consumption=128
opcache.interned_strings_buffer=8
opcache.max_accelerated_files=4000
opcache.revalidate_freq=60
opcache.fast_shutdown=1
opcache.enable_cli=1
点击查看更多…

phpmyadmin提示The mbstring extension is missing

centos7 装了nginx 和 mariadb 以及php71u-fpm后,我开始尝试使用phpmyadmin 去连接数据库。

出现如下错误:
image1
网上着直接安装mbstring
yum install php-mbstring

于是搜 …

点击查看更多…

centos7 安装 mariadb 出现冲突

今天在一台centos7的机器上安装mariadb 出现故障:

[root@localhost ~]# yum install  mariadb101u-server
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirrors.yun-idc.com
 * epel: mirror.premi.st
 * extras: mirrors.tuna.tsinghua.edu.cn
 * ius: mirrors.tuna.tsinghua.edu.cn
 * updates: mirrors.nwsuaf.edu.cn
 * webtatic …
点击查看更多…

Centos7 安装PHP7.0

默认centos7的源中php的版本是5.6的

秉着使用最新的版本的原则,此次想要安装PHP7.0

添加源:

rpm -Uvh https://centos7.iuscommunity.org/ius-release.rpm
[root@localhost ~]# rpm -Uvh https://centos7.iuscommunity.org/ius-release.rpm
Retrieving https://centos7.iuscommunity.org …
点击查看更多…