技术改变生活

博客园 首页 新随笔 联系 订阅 管理

06 2020 档案

摘要:centos7默认服务器网卡名称,如下图: [root@localhost ~]# ifconfig ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 192.168.0.160 netmask 255.255.255.0 阅读全文
posted @ 2020-06-30 17:12 小阿峰 阅读(459) 评论(0) 推荐(0) 编辑

摘要:centos修改主机名 1、临时修改,重启失效 [root@centos17 ~]# hostname abc [root@centos17 ~]# hostname abc 2、永久修改,修改配置文件,重启生效 [root@centos17 ~]# cat /etc/hostname centos 阅读全文
posted @ 2020-06-30 11:19 小阿峰 阅读(172) 评论(0) 推荐(0) 编辑

摘要:临时修改umask值,(umask 044;touch a.txt;ll a.txt) [root@localhost ~]# (umask 044;touch a.txt;ll a.txt) -rw--w--w- 1 root root 0 Jul 29 00:12 a.txt ()表示在子she 阅读全文
posted @ 2020-06-26 14:55 小阿峰 阅读(2015) 评论(0) 推荐(0) 编辑

摘要:mysql> alter table a1 change id idname int(20) unsigned not null; 修改表字段属性关键字change,语法:alter table 表名 change 旧字段名称 新字段名称 新字段属性;需要注意地方,unsigned 必须紧跟在int 阅读全文
posted @ 2020-06-22 17:05 小阿峰 阅读(383) 评论(0) 推荐(0) 编辑

摘要:mysql表复制 mysql表结构复制+mysql表数据复制 mysql> create table t2 like t1; mysql> insert into t2 select * from t1; mysql> select * from t1 into outfile '/tmp/a.tx 阅读全文
posted @ 2020-06-05 12:50 小阿峰 阅读(141) 评论(0) 推荐(0) 编辑

摘要:mysql中使用root用户登录出现:ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) 错误产生的原因是root用户没有localhost登录的权限,修改 /etc/my.cnf数据 阅读全文
posted @ 2020-06-05 12:46 小阿峰 阅读(2363) 评论(0) 推荐(1) 编辑