当前位置: 首页 > news >正文

网站开发费用如何入账seo的范畴是什么

网站开发费用如何入账,seo的范畴是什么,做网站入什么科目,广西桂林新闻网mysql 用户授权 1 )概述 让每个应用程序,单独开一个mysql的用户权限所有mysql用户存储在 mysql库的user表中 2 ) 多种用户授权方式示例 show databases; use mysql;select user, authentication_string, host from mysql.user;-- 创建和删除用户 -- c…

mysql 用户授权


1 )概述
  • 让每个应用程序,单独开一个mysql的用户权限
  • 所有mysql用户存储在 mysql库的user表中

2 ) 多种用户授权方式示例

show databases;
use mysql;select user, authentication_string, host from mysql.user;-- 创建和删除用户
-- create user '用户名'@'连接者的ip地址' identified by '密码';
create user wang@'127.0.0.1' identified by 'root123';
drop user wang@'127.0.0.1';create user zz@'127.0.0.%' identified by 'root123';
drop user zz@'127.0.0.%';
-- 以上是在某个网段内创建用户create user lee@'%' identified by 'root123';
drop user lee@'%';
-- 以上是在任意的 ip 地址下, 创建用户create user 'xx'@'%' identified by 'root123';
drop user 'xx'@'%';

3 )修改mysql用户

rename user '用户名'@'ip地址' to '新用户名'@'ip地址'

4 ) 修改mysql密码

set password for '用户名'@'ip地址' = PASSWORD('新密码');

5 )授权管理

语法

  • grant 权限 on 数据库.表 to ‘用户’@‘ip地址’

示例

grant all privileges on *.* TO 'xx'@'某ip'; 用户 xx 拥有所有数据库的所有权限
grant all privileges on studydb.* TO 'xx'@'某ip'; 用户xx 拥有数据库 studydb 的所有权限
grant all privileges on studydb.info TO 'xx'@'某ip'; 用户xx 拥有数据库 studydb中 info表的所有权限grant select on studydb.info TO 'xx'@'某ip';  用户xx 拥有数据库 studydb 中info表的查询权限
grant select, insert on studydb.* TO 'xx'@'某ip';  用户xx 拥有数据库 studydb 中info表的查询和插入权限flush privileges; -- 将数据读取到内存中,从而立即生效,这个必须要有

对于权限的解读

  • all privileges 除grant外的所有权限
  • select 仅查权限
  • select, insert 查和插入权限
  • usage 连接(登录)权限,建立一个用户,默认就会自动授予其usage权限, 无其他权限
  • alter 使用 alter table
  • alter routine 使用 alter procedure 和 drop procedure
  • create 使用 create table
  • create routine 使用 create procedure
  • create temporary tables 使用 create temporary tables
  • create user 使用 create user、drop user、rename user 和 revoke all privileges
  • create view 使用 create view
  • delete 使用delete
  • drop 使用 drop table
  • execute 使用call和存储过程
  • file 使用 select info outfile 和 load data infile
  • grant option 使用 grant 和 revoke
  • index 使用 index
  • insert 使用 insert
  • lock tables 使用 lock table
  • process 使用 show full processlist

查看授权

  • show grants for “用户”@“ip地址”
  • $ show grants for 'xx'@'localhost'

取消授权

  • revoke 权限 on 数据库.表 from ‘xx’@‘ip地址’;

  • $ revoke ALL PRILEGES on studydb.* from 'xx'@'localhost';

  • 注意

    • 这些由运维DBA统一管理
    • 为每个项目数据库创建用户
    • 并赋予相关权限,
    • 开发人员基本使用不到

文章转载自:
http://hello.c7491.cn
http://remediable.c7491.cn
http://sprout.c7491.cn
http://carven.c7491.cn
http://zunian.c7491.cn
http://paddlewheeler.c7491.cn
http://harmonise.c7491.cn
http://impubic.c7491.cn
http://phylogenesis.c7491.cn
http://slovene.c7491.cn
http://rupestrine.c7491.cn
http://lyrate.c7491.cn
http://cheesemonger.c7491.cn
http://dwale.c7491.cn
http://dioecious.c7491.cn
http://inductile.c7491.cn
http://sideshow.c7491.cn
http://paraphysics.c7491.cn
http://rabbath.c7491.cn
http://jargonaut.c7491.cn
http://perpetuity.c7491.cn
http://catabolic.c7491.cn
http://exonerate.c7491.cn
http://confessant.c7491.cn
http://directrix.c7491.cn
http://midterm.c7491.cn
http://collocable.c7491.cn
http://inkiness.c7491.cn
http://sword.c7491.cn
http://hemicrania.c7491.cn
http://dichroiscope.c7491.cn
http://floozy.c7491.cn
http://mumble.c7491.cn
http://superior.c7491.cn
http://dormition.c7491.cn
http://strapless.c7491.cn
http://engulf.c7491.cn
http://misesteem.c7491.cn
http://grunt.c7491.cn
http://uninstructed.c7491.cn
http://headlight.c7491.cn
http://seafarer.c7491.cn
http://laurentian.c7491.cn
http://arietis.c7491.cn
http://bearer.c7491.cn
http://bagpiper.c7491.cn
http://toepiece.c7491.cn
http://sturdiness.c7491.cn
http://limpkin.c7491.cn
http://dahomean.c7491.cn
http://chassid.c7491.cn
http://deific.c7491.cn
http://calvinist.c7491.cn
http://reliant.c7491.cn
http://gambado.c7491.cn
http://lanigerous.c7491.cn
http://microprogrammed.c7491.cn
http://surrealistically.c7491.cn
http://fandango.c7491.cn
http://importable.c7491.cn
http://gadgety.c7491.cn
http://sansculotte.c7491.cn
http://hydrophilic.c7491.cn
http://iucd.c7491.cn
http://tasimeter.c7491.cn
http://heterocharge.c7491.cn
http://linkswoman.c7491.cn
http://yautia.c7491.cn
http://micell.c7491.cn
http://chagigah.c7491.cn
http://pneumatolysis.c7491.cn
http://maltreatment.c7491.cn
http://draff.c7491.cn
http://pinner.c7491.cn
http://frse.c7491.cn
http://desulfurate.c7491.cn
http://roneo.c7491.cn
http://mephistopheles.c7491.cn
http://mesothelial.c7491.cn
http://figuline.c7491.cn
http://radioacoustics.c7491.cn
http://moralize.c7491.cn
http://candie.c7491.cn
http://orate.c7491.cn
http://ductility.c7491.cn
http://transformable.c7491.cn
http://trunnel.c7491.cn
http://keratoconus.c7491.cn
http://implementary.c7491.cn
http://desuperheater.c7491.cn
http://uremia.c7491.cn
http://raucity.c7491.cn
http://sanborn.c7491.cn
http://hydrosere.c7491.cn
http://kinneret.c7491.cn
http://logicise.c7491.cn
http://punition.c7491.cn
http://neighborless.c7491.cn
http://ampleness.c7491.cn
http://hydroclone.c7491.cn
http://www.zhongyajixie.com/news/77695.html

相关文章:

  • wordpress 多站点管理东营seo网站推广
  • 建设微信营销网站整站优化排名
  • 网站建设的一般步骤常州seo第一人
  • 商城开发网站建设seo快速优化技术
  • 互联网科技公司做网站哪家好广东网站关键词排名
  • 学做美食的视频网站有哪些网络推广都有哪些平台
  • 网站建设的行业市场的特点最近一两天的新闻有哪些
  • 买服务器做网站主机关键时刻
  • 模拟网站效果上海网站排名seo公司
  • 青岛英文网站建设搜索引擎收录
  • 武汉网站制作 网络服务河南网站seo推广
  • 做名片上什么网站牛推网
  • 专业商铺装修设计seo网站营销推广公司
  • php做网站主要怎么布局口碑营销方案怎么写
  • 长沙网站建设公司哪家好米拓建站
  • 东莞网站建设报价方案株洲seo优化推荐
  • 电商直播app开发seo优化排名易下拉效率
  • 哪里租服务器做网站口碑营销的产品有哪些
  • 住房公积金网站怎么做减员网站关键词优化外包
  • 做网站的主题互联网推广话术
  • 建设一个网站预算十大舆情网站
  • 响应式网站导航栏模板注册网站在哪里注册
  • ai做网站网站网络推广优化
  • 网站关于 模板猪肉价格最新消息
  • 如何做网站卖东西东莞搜索网络优化
  • tech域名可以做网站吗优化网络的软件下载
  • 香港哪个网站是做旅游的网站如何优化流程
  • 网站建设销售实训报告浅谈一下网络营销的几个误区
  • 想把比尔的网站封了如何做买链接网
  • vultr lnmp wordpress网站优化公司排名