现在位置: 首页 > 系统配置 > CentOS > 文章
php7编译安装phpredis扩展报一下错误的解决办法 hecking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking w...
阅读全文
配置防火墙,开启80端口、3306端口 CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙。 1、关闭firewall: systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 2、安装iptables防火墙 yum install iptables-services #安装 vi /etc/sysconfig/iptables #编辑防火墙配置文件 # Firewall configuration written by system-config-firewall # Manual ...
阅读全文
安装最新的php7.0.6在安装成功后运行 php -m 查看安装了哪些扩展 ,或者执行任意php命令报错 php -v PHP Deprecated: PHP Startup: memcached.sess_lock_wait and memcached.sess_lock_max_wait are deprecated. Please update your configuration to use memcached.sess_lock_wait_min, memcached.sess_lock_wait_max and memcached.sess_lock_retries in Unknown on line 0 Deprecated: PHP Startup: memcached.sess_lock_wa...
阅读全文
最近发现自己使用的某台云服务武器只要稍微流量大一点,就会出现莫名的的数据库连接错误的情况 ,然后连上服务器查看,发现mysql进程被结束了,经常出现这种情况,这还怎么得了,然后第一时间查看mysql日志 发现是被进程结束了,好端端的怎么就自己结束了呢,这时候想到应该是mysql进程占用太多内存,然后被系统给kill 掉了. 然后 tail /var/log/messages 查看服务器的系统日志/var/log/messages 然后看了下在mysql自动停止的时间段内,...
阅读全文
2015年10月24日 CentOS, 系统配置 ⁄ 共 217字 暂无评论
引言:SELinux一个灵活而强制性的访问控制结构,旨在提高Linux系统的安全性,提供强健的安全保证,可防御未知攻击,但是在实际运用中,我们往往需要关闭它。 下面在CentOS 6.0关闭SELinux     vi /etc/selinux/config #SELINUX=enforcing #注释掉 #SELINUXTYPE=targeted #注释掉 SELINUX=disabled #增加 :wq #保存,关闭。 shutdown -r now #重启系统
阅读全文
2015年10月24日 CentOS, 系统配置 ⁄ 共 1480字 暂无评论
切忌: 在做任何操作之前先备份原文件,我们约定备份文件的名称为:源文件名称+bak+日期,例如原文件名称为:centos.txt 那么备份文件名称为:centos.txtbak ======================================================================= 引言:linux的网卡IP地址是存放在文件中的,这个配置文件在/etc/sysconfig/network-scripts下, 名称分别为ifcfg-eth0,ifcfg-eth1等 如果你只有一块网卡,就只有ifcfg-eth0一个文件, 如果你有...
阅读全文
2015年10月24日 CentOS, Linux, 系统配置 ⁄ 共 464字 暂无评论
引言:liunx系统中默认不支持rar文件的解压缩,如果我们的网站或者数据库是从windows系统中迁移过来的 并且在迁移的过程中,是使用rar压缩文件的形式打包的,那么在linux下面能正常的解压rar文件吗? 我们需要下载安装unrar软件 官方网站 http://www.rarlab.com/rar_add.htm 我是用的centos,下载的是unrar for centos这个版本 下面在终端提示符下操作 1 wget http://www.rarlab.com/rar_CN/unrar-3.7.7-centos.gz #下载 2 gzip...
阅读全文
2015年10月24日 CentOS, 系统配置 ⁄ 共 241字 暂无评论
文章目录 应用--确定  然后,刻录器--刻录映像文件 选择下载的4.38G的镜像。刻录速度选择 4X 点击刻录!  刻录到最后的时候 会提示 刻录失败,这个时候别真以为刻录失败了,其实已经刻录好了!可以用来安装CentOS 6.0了!亲自实战过!   分享给:想通过自己刻录DVD安装CentOS 6.0 32位 的朋友们       工具:普通4.7G容量DVD一张(1.5元)       软件:Nero 10 (自己找...
阅读全文
引言: 附件:CentOS 6.0下载地址 32位:http://vault.centos.org/6.0/isos/i386/CentOS-6.0-i386-bin-DVD.torrent 64位:http://vault.centos.org/6.0/isos/x86_64/CentOS-6.0-x86_64-bin-DVD.torrent 用光盘或者U盘成功引导后,按键盘上面的ESC键,出现boot: 输入linux text,进入文本安装模式; 直接按回车,进入图形安装模式; 如果不按ESC键,则默认进入图形安装模式。 下面以图形安装模式来演示: 安装界面 界面说明: Ins...
阅读全文
×