centos 安装mysql Posted on 2018-03-22 Edited on 2025-03-12 注:该文档只适用centos7以下(不包括centos7),安装mysql5.6。文档中的mysql5.6相对于mysql5.7存在一些意想不到的问题。比如int类型的获取到undefined会被mysql处理成default值。 检测系统是否安装mysqlyum list installed | grep mysql 安装mysql安装包12wget http://repo.mysql.com/mysql-community-release-el6-5.noarch.rpmrpm -ivh mysql-community-release-el6-5.noarch.rpm Read more »
Linux小操作集锦 Posted on 2017-09-24 Edited on 2024-03-21 root密码修改12345chattr -i /etc/passwdchattr -i /etc/shadowpasswd rootchattr +i /etc/passwdchattr +i /etc/shadow Read more »
使用git做服务器端代码的部署 Posted on 2017-09-23 Edited on 2024-03-21 server 准备工作: 这些工作都在root或有管理权限的帐号下进行,下面以root为用户,切换到其他用户的时候会提示 Read more »
git单操作集锦 Posted on 2017-09-22 Edited on 2024-03-21 git 合并单个文件1git checkout -p master account/api/views.py git 本地忽略跟踪1git update-index --assume-unchanged /path/to/file Read more »