vi编辑器
上一页 ctrl+b
下一页 空格
查询 /name /标识 后面就是查询的名称
useradd demo 添加用户
passwd 123456 设置密码
切换权限
su root
linux 本地无法访问linux
解放方法关闭防火墙
1.需要远程登录访问的话,需要关闭防火墙
/etc/init.d/iptables stop
2.还需要授权远程登录连接 使用grant
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password' WITH GRANT OPTION;
3. 刷新 权限
FLUSH PRIVILEGES;
explain select * from users\G; 查询索引受影响行数
// mysql> delimiter %%
// mysql> create procedure ptest2()
// -> begin
// -> declare pid int;
// -> set pid =1000;
// -> while pid>0 do
// -> insert into users(name ,email) values(FLOOR(100 + (RAND() * 9999)),md5(FLOOR(100 + (RAND() * 9999))));
// -> set pid =pid -1;
// -> end while;
// -> end %%
//
// shwo procedure status查看存储过程
// drop procedure demo; 删除存储过程
linux 连接 mysql 报错
Can't connect to local MySQL server through socket '/var/lib
服务mysql 没有启动导致
设置mysql开机自动启动
1. chkconfig --add mysqld
2.chkconfig --level 345 mysqld on 在执行等级2,3,5时,开启 vsftpd系统服务:
修改httpd服务也是相同
关闭打印机
chkconfig --level 235 cups off
如果没有局域网
chkconfig --level 235 smb off
如果不需要远程用户登录的
$chkconfig --level 235 sshd off
如果不需要定时任务的:
$chkconfig --level 235 crond off
如果不需要添加新硬件的:
$chkconfig --level 235 kudzu off
查看特定系统服务的进程状态,如httpd:
$chkconfig --list | grep httpd
my.cnf配置文件 /etc/my.cnf
mysql数据库位置 datadir=/var/lib/mysql