三角函数的正交性 三角函数的正交性三角函数系证明 三角函数的正交性
三角函数系
集合 { s i n 0 x , c o s 0 x , s i n x , c o s x , s i n 2 x , c o s 2 x , . . . } \lbrace sin0x, cos0x, sinx,cosx,sin2x,cos2x,... \rbrace {sin0x,cos0x,sinx,cosx,sin2x,cos2x,...…
1、关闭mysql服务
service mysqld stop 2、找到my.cnf配置文件
whereis my.cnf 3、在[mysqld]标签下添加:skip-grant-tables
vim /etc/my.cnf 4、启动mysql服务
service mysqld start 5、不用密码登录mysql,执行下面命令以后直接回车
mysql -u root 6、使用数据…
记录一次修改mysql密码无效的经历。
因为项目需求需要用到阿里云服务器,于是我准备登录服务器去建表,结果忘记密码了,我用SQLyog保存的密码解码找到密码之后在云服务器用命令修改了密码。
修改密码命令
mysql> ALTER USER rootlocalhos…
前提:安装mysql
解压mysql.tar.gz到指定目录进入mysql-5.7.18目录创建文件夹mkdir data创建用户来执行mysqld命令
groupadd mysql # 创建组mysql
useradd -g mysql mysql # 创建用户,并指定组初始化数据库,在bin目录下 ./mysqld --initia…