安装 EPEL 源 如果尚未安装 EPEL 源,请执行: yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm 安装 Remi 源: yum -y install https://rpms.remirepo.net/enterpri…
chown -R apache:apache /home/wordpress 用户:apache 组:apache 将目录所有者设置为 apache
系统里面有些历史表,之前是没有主键的,现在需要一些需求无法实现,记录一下,给表增加主键 alter table archive_flow_workflow_bak add id int(11) primary key AUTO_INCREMENT; # 添加自增主键
执行 ll /etc/rc.local 命令,发现 /etc/rc.local 映射文件是 /etc/rc.d/rc.local 再 ll /etc/rc.d/rc.local 发现这个文件没有执行权限(少了x); 其实 vi /etc/rc.local 有这样一段话 # Please note that you must run 'chmod +…
-- 1.查看当前数据库锁表的情况 SELECT * FROM information_schema.INNODB_TRX; -- 2.杀掉查询结果中锁表的trx_mysql_thread_id kill trx_mysql_thread_id
1、安装yum支持包 yum install xfs* parted -y 2、查看磁盘信息 fdisk -l …… Disk /dev/sdb: 9796.3 GB, 9796283531264 bytes, 19133366272 sectors Units = sectors of 1 * 512 = 512 bytes Sector siz…
重启自动挂载 vi /etc/fstab 首先查看逻辑分区uuid blkid /dev/vdb1 去编辑fstab,照自动挂载的格式写上。(这里推荐用uuid,因为重启后逻辑分区号有改变的风险) UUID=f221211d-a26c-4852-aece-5207177f97e7 /wwwroot ext4 defaults 0 0 验证。 执行m…
原来状态 MySQL安装后默认安装在/var/lib/mysql目录下 配置文件为/etc/my.cnf 根据场景,需要将/var/lib/mysql移动到/home/data/mysql #datadir=/var/lib/mysql #socket=/var/lib/mysql/mysql.sock 移动过程 1、停止mysql服务 [root…
配置YUM源 在 https://dev.mysql.com/downloads/repo/yum/ 找到 yum 源 rpm 安装包 安装 mysql 源 # 下载 shell> wget https://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm # 安装 m…
前言 客户环境系统迁移新服务器,客户要求数据库从 mariadb 修改为 mysql ,新装了一个 mysql5.7 迁移旧数据后,启动项目,后台纷纷报错 报错信息: Expression #1 of ORDER BY clause is not in SELECT list, references column 'xxxx' which is n…