Custom Compiled Kernel with PV-GRUB on CentOS 7
Running a custom-compiled Linux kernel is useful if you need to enable or disable certain kernel features that are unavailable in Linode-supplied or distribution-supplied kernels. ...
mysql各个主要版本之间的差异
一、各版本的常用命令差异 show innodb status\G mysql-5.1 show engines innodb status\G mysql-5.5 关于grant授权 mysql-5.5 的 user@'%'不包含localhost 二、MySQL 4.1/5.0/5.1/5.5/5.6各版...
宝塔一键更改默认mysql数据目录路径
该shell脚本仅限于宝塔bt.cn linux面板使用 主要参数功能: 1.默认修改数据库存放路径 sh mysql_Transfer.sh 2.还原数据库原存放路径 sh mysql_Transfer.sh old 脚本相关提示英文翻...
宝塔Linux面板PHP扩展安装脚本大全
1、安装ionCube wget http://125.88.182.172:5880/ext/ioncube.sh && sh ioncube.sh 2、安装Memcached 已修正对php7的支持 wget http://125.88.182.172:5880/ext/memcached.sh &a...
宝塔面板通过计划任务定期释放PHP占用的内存
在计划任务中添加任务,选择周期,如每周一 3时30分执行 选执行Shell脚本,粘贴以下Shell脚本 if [ -f /etc/init.d/php-fpm-52 ];then service php-fpm-52 reload fi if [ -f /etc/init.d/php-f...
宝塔面板 nginx/apache/mysql/php版本安装、切换说明
说明:切换版本后,请退出面板并重新登陆,否则可能会有识别异常! 添加PHP版本: wget -O install.sh http://125.88.182.172:5880/src/install.sh && sh install.sh add 切换MySQL版本...
宝塔主机面板升级OpenSSL教程
1、登录SSH,查看OpenSSL版本 openssl version 2、下载源代码 wget https://github.com/openssl/openssl/archive/ 3、解压源代码包,并进入OpenSSL目录 tar zxvf OpenSSL_1_1_0c.tar.gz 4、进行...
寶塔面板刪除不必要的PHP版本
寶塔面板刪除不必要的PHP版本 chkconfig --del php-fpm-52 rm -rf /etc/init.d/php-fpm-52 rm -rf /www/server/php/52
宝塔挂载新硬盘后修改网站根目录的方法
service mysqld stop service nginx stop cd /www/ #进入网站上层目录 mv wwwroot /data #把wwwroot移动到/Data目录,即数据盘 ln -s /data/wwwroot #原目录不变,并链接到数据盘,原有任何设置...
云锁3.0正式发布,Linux服务器端安装方法。
安装云锁 1.下载云锁安装包 x86:wget http://download.yunsuo.com.cn/v3/yunsuo_agent_32bit.tar.gz x64:wget http://download.yunsuo.com.cn/v3/yunsuo_agent_64bit.tar.gz 2.检查并关闭seli...
修复损坏的MySQL数据表
有两种方法,一种方法使用mysql的check table和repair table 的sql语句,另一种方法是使用MySQL提供的多个myisamchk, isamchk数据检测恢复工具。前者使用起来比较简便。推荐使用。 1. check tab...