使用MariaDB数据库管理系统

前言:本博客仅作记录学习使用,部分图片出自网络,如有侵犯您的权益,请联系删除

一、数据库管理系统

数据库是指按照某些特定结构来存储数据资料的数据仓库;

数据库管理系统是一种能够对数据库中存放的数据进行建立、修改、删除、查找、维护等操作的软件程序;

MariaDB当前由开源社区进行维护,是MySQL的分支产品,几乎完全兼容MySQL。MariaDB与MySQL具有高度的兼容性,具有库二进制奇偶校验的直接替换功能,与Mysql API和命令均保持一致。并且MariaDB还自带了一个新的存储引擎Aria,用来替代MyISAM,与MySQL一样好用。

二、初始化mariaDB服务

安装部署MariaDB数据库主程序及服务端程序;

 [root@Linux ~]# yum install mariadb mariadb-server

安装完成后,启动服务并加入开机自启项中;

 [root@Linux ~]# systemctl start mariadb[root@Linux ~]# systemctl enable mariadb

在确认MariaDB数据库软件程序安装完毕后并成功启动后不要立即使用。为了确保数据库的安全性和正常运转,先对数据库进行初始化操作;

  • 设置root管理员在数据库中的密码值; (注意,该密码并非root管理员在系统中的密码,这里的密码值默认应该为空,可直接按回车键)
  • 设置root管理员在数据库中的专有密码;
  • 删除匿名账户,并使用root管理员从远程登录数据库,以确保数据库上运行的业务的安全性
  • 删除默认的测试数据库,取消测试数据库的一系列访问权限;
  • 刷新授权列表,让初始化的设定立即生效。

下面进行操作;

 [root@Linux ~]# mysql_secure_installation ​NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDBSERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!​In order to log into MariaDB to secure it, we'll need the currentpassword for the root user.  If you've just installed MariaDB, andyou haven't set the root password yet, the password will be blank,so you should just press enter here.​Enter current password for root (enter for none): # 输入管理员原始密码,默认为空OK, successfully used password, moving on...​Setting the root password ensures that nobody can log into the MariaDBroot user without the proper authorisation.​Set root password? [Y/n] Y  # 设置管理员密码           New password: # 输入新的密码Re-enter new password: # 再次输入密码Password updated successfully!Reloading privilege tables..... Success!​​By default, a MariaDB installation has an anonymous user, allowing anyoneto log into MariaDB without having to have a user account created forthem.  This is intended only for testing, and to make the installationgo a bit smoother.  You should remove them before moving into aproduction environment.​Remove anonymous users? [Y/n] y  # 删除匿名账户... Success!​Normally, root should only be allowed to connect from 'localhost'.  Thisensures that someone cannot guess at the root password from the network.​Disallow root login remotely? [Y/n] y # 禁止管理员从远程登录... Success!​By default, MariaDB comes with a database named 'test' that anyone canaccess.  This is also intended only for testing, and should be removedbefore moving into a production environment.​Remove test database and access to it? [Y/n] y  # 删除测试数据库及其访问权限- Dropping test database...... Success!- Removing privileges on test database...... Success!​Reloading the privilege tables will ensure that all changes made so farwill take effect immediately.​Reload privilege tables now? [Y/n] y # 刷新授权表,让初始化后的设定立即生效... Success!​Cleaning up...​All done!  If you've completed all of the above steps, your MariaDBinstallation should now be secure.​Thanks for using MariaDB!

在很多生产环境中都要使用站库分离的技术(即网站和数据库不在同一个服务器上),若要让root管理员远程访问数据库,在上面的初始化操作中设置允许策略;还需要设置防火墙放行对数据库服务程序的访问请求,数据库服务程序默认会占用3306端口,在防火墙策略中服务名称统一叫作mysql;

 [root@Linux ~]# firewall-cmd --permanent --add-service=mysql              [root@Linux ~]# firewall-cmd --reload 

准备就绪;首次登录MariaDB数据库;管理数据库的命令为mysql,其中"-u"参数用来指定以root管理员身份登录、"-p"参数用来验证该用户在数据库中的密码值;

 [root@Linux ~]# mysql -u root -pEnter password: Welcome to the MariaDB monitor.  Commands end with ; or \g.Your MariaDB connection id is 17Server version: 10.3.39-MariaDB MariaDB Server​Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.​Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.​MariaDB [(none)]> 

初次使用数据库管理工具,可以输入help命令查看MariaDB能做的操作,语句的用法和MySQL一模一样;

 MariaDB [(none)]> help​General information about MariaDB can be found athttp://mariadb.org​List of all MySQL commands:Note that all text commands must be first on line and end with ';'?         (\?) Synonym for `help'.clear     (\c) Clear the current input statement.connect   (\r) Reconnect to the server. Optional arguments are db and host.delimiter (\d) Set statement delimiter.edit      (\e) Edit command with $EDITOR.ego       (\G) Send command to mysql server, display result vertically.exit      (\q) Exit mysql. Same as quit.go        (\g) Send command to mysql server.help      (\h) Display this help.nopager   (\n) Disable pager, print to stdout.notee     (\t) Don't write into outfile.pager     (\P) Set PAGER [to_pager]. Print the query results via PAGER.print     (\p) Print current command.prompt    (\R) Change your mysql prompt.quit      (\q) Quit mysql.rehash    (\#) Rebuild completion hash.source    (\.) Execute an SQL script file. Takes a file name as an argument.status    (\s) Get status information from the server.system    (\!) Execute a system shell command.tee       (\T) Set outfile [to_outfile]. Append everything into given outfile.use       (\u) Use another database. Takes database name as argument.charset   (\C) Switch to another charset. Might be needed for processing binlog with multi-byte charsets.warnings  (\W) Show warnings after every statement.nowarning (\w) Don't show warnings after every statement.​For server side help, type 'help contents'

执行数据库命令时,都需要在命令后面用分号(;)结尾;下面执行如下命令查看数据库管理系统中当前都有哪些数据库;

 MariaDB [(none)]> show databases;+--------------------+| Database           |+--------------------+| information_schema || mysql              || performance_schema |+--------------------+3 rows in set (0.001 sec)

接下来使用数据库命令将root管理员在数据库管理系统中的密码值修改为linux。这样退出后再尝试登录,如果还坚持输入原先的密码,则将提示访问失败。

 MariaDB [(none)]> set password = password('linux');Query OK, 0 rows affected (0.000 sec)​MariaDB [(none)]> exitBye[root@Linux ~]# mysql -u root -pEnter password:  # 输入旧密码报错ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)[root@Linux ~]# mysql -u root -pEnter password: # 输入新密码成功登录Welcome to the MariaDB monitor.  Commands end with ; or \g.Your MariaDB connection id is 20Server version: 10.3.39-MariaDB MariaDB Server​Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.​Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

三、管理用户以及授权

创建多个专用的数据库管理账户,然后在分配合理的权限,以满足他们的工作需求;"CREATE USER 用户名@主机名 IDENTIFIED BY '密码';"格式创建数据库管理账户。

MariaDB [(none)]> create user luke@localhost identified by 'linux';
Query OK, 0 rows affected (0.001 sec)

创建的账户信息可以使用select命令语句来查询。下面命令査询的是账户luke的主机名称、账户名称以及经过加密的密码值信息;

MariaDB [(none)]> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -ADatabase changed
MariaDB [mysql]> select host,user,password from user where user="luke";
+-----------+------+-------------------------------------------+
| host      | user | password                                  |
+-----------+------+-------------------------------------------+
| localhost | luke | *6F3CAE7C3BBB2A5B5D933738682953BC21AEBEE7 |
+-----------+------+-------------------------------------------+
1 row in set (0.000 sec)

不过,luke只是一个普通用户,没有任何权限;

MariaDB [mysql]> exit
Bye
[root@Linux ~]# mysql -u luke -p
Enter password: MariaDB [(none)]> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
+--------------------+
1 row in set (0.000 sec)

数据库管理系统所使用的命令一般都比较复杂;以grant命令为例;grant命令用于为账户进行授权,其常见格式如如下;在使用qrant命令时需要写上要赋予的权限、数据库及表单名称,以及对应的账户及主机信息;其实,只要理解了命令中每个字段的功能含义,也就不觉得命令复杂难懂了;

命令作用
GRANT 权限 ON 数据库.表单名称 TO 用户名@主机名对某个特定数据库中的特定表单给予授权
GRANT 权限 ON 数据库.* TO 用户名@主机名对某个特定数据库中的所有表单给予授权
GRANT 权限 ON *.* TO 用户名@主机名所有数据库及所有表单给予授权
GRANT 权限1,权限2 ON 数据库.* TO 用户名@主机名某个数据库中的所有表单给予多个授权
GRANT ALL PRIVILEGES ON *.* TO 用户名@主机名所有数据库及所有表单给予全部授权(需谨慎操作)

用户的授权工作需要管理员来执行;针对mysql数据库中的user表单向账户luke授于查询、更新、删除以及插入等权限;

[root@Linux ~]# mysql -u root -p
Enter password: MariaDB [(none)]> GRANT SELECT,UPDATE,DELETE,INSERT ON mysql.user TO luke@localhost;
Query OK, 0 rows affected (0.000 sec)

操作完成,再次查看一下账户luke的权限;

MariaDB [(none)]> SHOW GRANTS FOR luke@localhost;
+----------------------------------------------------------------------------------+
| Grants for luke@localhost                                                        |
+----------------------------------------------------------------------------------+
| GRANT USAGE ON *.* TO `luke`@`localhost` IDENTIFIED BY PASSWORD '*6F3CAE7C3BBB2A5B5D933738682953BC21AEBEE7' |
| GRANT SELECT, INSERT, UPDATE, DELETE ON `mysql`.`user` TO `luke`@`localhost`     |
+----------------------------------------------------------------------------------+
2 rows in set (0.000 sec)

显示账户luke已经拥有了权限;在切换到账户luke,此时就能看到mysql数据库了,而且还能看到表单user;

[root@Linux ~]# mysql -u luke -p
Enter password: MariaDB [(none)]> SHOW databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
+--------------------+
2 rows in set (0.000 sec)MariaDB [(none)]> use mysql;
Database changedMariaDB [mysql]> SHOW tables;
+-----------------+
| Tables_in_mysql |
+-----------------+
| user            |
+-----------------+
1 row in set (0.000 sec)MariaDB [mysql]> exit
Bye

OK,接下来学习数据库内容的修改方法。切换回root,移除刚才的权限;

[root@Linux ~]# mysql -u root -p
Enter password: MariaDB [(none)]> REVOKE SELECT,UPDATE,DELETE,INSERT ON mysql.user FROM luke@localhost;
Query OK, 0 rows affected (0.000 sec)

可以看到,除了移除授权命令(revoke)与授权命令(grant)不同外,其余部分都是一致的;再次查看luke账户的权限;

MariaDB [(none)]> SHOW GRANTS FOR luke@localhost;
+----------------------------------------------------------------------------------+
| Grants for luke@localhost                                                        |
+----------------------------------------------------------------------------------+
| GRANT USAGE ON *.* TO `luke`@`localhost` IDENTIFIED BY PASSWORD '*6F3CAE7C3BBB2A5B5D933738682953BC21AEBEE7'                                        |
+----------------------------------------------------------------------------------+
1 row in set (0.000 sec)

不再需要某个用户时,直接使用DROP命令进行删除;

MariaDB [(none)]> DROP user luke@localhost;
Query OK, 0 rows affected (0.000 sec)

四、创建数据库与表单

在MariaDB数据库管理系统中,一个数据库可以存放多个数据表,数据表单是数据库中最重要最核心的内容;用于创建数据库的命令及作用如下;

命令用法作用
CREATE database 数据库名称;创建新的数据库
DESCRIBE 表单名称;描述表单
UPDATE 表单名称 SET attribute=新值 WHERE attribute > 原始值;更新表单中的数据
USE 数据库名称;指定使用的数据库
SHOW databases;显示当前已有的数据库
SHOW tables;显示当前数据库中的表单
SELECT * FROM 表单名称;从表单中选中某个记录值
DELETE FROM 表单名 WHERE attribute=值;从表单中删除某个记录值

建立数据库是管理数据的起点;现在尝试建立一个名为Linuxprobe的数据库,然后再查看数据库列表;

MariaDB [(none)]> CREATE DATABASE linuxprobe;
Query OK, 1 row affected (0.000 sec)MariaDB [(none)]> SHOW databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| linuxprobe         |
| mysql              |
| performance_schema |
+--------------------+
4 rows in set (0.001 sec)

MariaDB与MySQL同属关系型数据库(Relational Database Management System),“关系型”数据库有些类似于表格的概念,一个关系型数据库由一个或多个表格/表单组成

表头代表每一列的名称代表具有相同数据类型的数据集合代表用来描述事物的具体信息代表行的具体信息,每个值均与该列的其他数据类型相同;代表用来识别某个特定事物的方法,在当前列中具有唯一性。

比如在刚刚的库中创建表单mybook,然后进行表单的初始化,即定义存储数据内容的结构;下面定义3个字段项;长度为15个字符型字段name用来存放图书名称;整型字段price和pages分别存储图书的价格和页数;

MariaDB [(none)]> use linuxprobe;
Database changed
MariaDB [linuxprobe]> CREATE TABLE mybook (name char(15),price int,page int);
Query OK, 0 rows affected (0.007 sec)MariaDB [linuxprobe]> DESCRIBE mybook;
+-------+----------+------+-----+---------+-------+
| Field | Type     | Null | Key | Default | Extra |
+-------+----------+------+-----+---------+-------+
| name  | char(15) | YES  |     | NULL    |       |
| price | int(11)  | YES  |     | NULL    |       |
| page  | int(11)  | YES  |     | NULL    |       |
+-------+----------+------+-----+---------+-------+
3 rows in set (0.001 sec)

五、管理表单及数据

使用INSERT命令向mybook数据表单中插一条图书信息;在命令中写清表单名称以及对应的字段项;

我们在使用select命令查询表单内容时,需要加上想要查询的字;如果想查看表单中的所有内容,则可以使用星号(*)通配符来显示;

MariaDB [linuxprobe]> INSERT INTO mybook(name,price,page) VALUES('linuxprobe','60','518');
Query OK, 1 row affected (0.001 sec)MariaDB [linuxprobe]> SELECT * from mybook;
+------------+-------+------+
| name       | price | page |
+------------+-------+------+
| linuxprobe |    60 |  518 |
+------------+-------+------+
1 row in set (0.000 sec)

修改方法:使用update命令进行修改

MariaDB [linuxprobe]> UPDATE mybook SET price=55;
Query OK, 1 row affected (0.001 sec)
Rows matched: 1  Changed: 1  Warnings: 0MariaDB [linuxprobe]> SELECT name,price FROM mybook;
+------------+-------+
| name       | price |
+------------+-------+
| linuxprobe |    55 |
+------------+-------+
1 row in set (0.000 sec)

可用where命令进行指定某一条进行修改,例如再插入两条书籍信息:

MariaDB [linuxprobe]> INSERT INTO mybook(name,price,page) VALUES('linuxcool','85','300');
Query OK, 1 row affected (0.001 sec)MariaDB [linuxprobe]> INSERT INTO mybook(name,price,page) VALUES('linuxdown','105','500');
Query OK, 1 row affected (0.001 sec)

然后仅修改名称为linuxcool的书籍价格为60元,不影响其他书籍;

MariaDB [linuxprobe]> UPDATE mybook SET price=60 where name='linuxcool';
Query OK, 1 row affected (0.001 sec)
Rows matched: 1  Changed: 1  Warnings: 0MariaDB [linuxprobe]> select * from mybook;
+------------+-------+------+
| name       | price | page |
+------------+-------+------+
| linuxprobe |    55 |  518 |
| linuxcool  |    60 |  300 |
| linuxdown  |   105 |  500 |
+------------+-------+------+
3 rows in set (0.000 sec)

可使用delete命令删除某个数据表单中的内容;

MariaDB [linuxprobe]> DELETE FROM mybook;
Query OK, 3 rows affected (0.001 sec)MariaDB [linuxprobe]> SELECT * FROM mybook;
Empty set (0.000 sec)

在数据越来越多的情况下,若我们只想查看其价格大于某个数值的图书时,又该如何定义查询语句呢?先使用insert插入命令依次插入4条信息:

MariaDB [linuxprobe]> INSERT INTO mybook(name,price,page) VALUES('linxuprobe1','30','518');
Query OK, 1 row affected (0.001 sec)MariaDB [linuxprobe]> INSERT INTO mybook(name,price,page) VALUES('linxuprobe2','50','518');
Query OK, 1 row affected (0.001 sec)MariaDB [linuxprobe]> INSERT INTO mybook(name,price,page) VALUES('linxuprobe3','80','518');
Query OK, 1 row affected (0.001 sec)MariaDB [linuxprobe]> INSERT INTO mybook(name,price,page) VALUES('linxuprobe4','100','518');
Query OK, 1 row affected (0.001 sec)

结合使用select与where命令让查询结果更加精准;其中,where命令是在数据库中进行匹配查询的条件命令。通过设置查询条件,就可以仅查找出符合该条件的数据。下面列出where命令中常用的查询参数以及作用;

参数作用
=相等
<>或!=不相等
>大于
<小于
>=大于或等于
<=小于或等于
BETWEEN在某个范围内
LIKE搜索一个例子
IN在列中搜索多个值

示例:分别在mybook表单中查找出价格大于75元或价格不等于80元的图书;

MariaDB [linuxprobe]> SELECT * FROM mybook WHERE price>75;
+-------------+-------+------+
| name        | price | page |
+-------------+-------+------+
| linxuprobe3 |    80 |  518 |
| linxuprobe4 |   100 |  518 |
+-------------+-------+------+
2 rows in set (0.001 sec)MariaDB [linuxprobe]> SELECT * FROM mybook WHERE price!=80;
+-------------+-------+------+
| name        | price | page |
+-------------+-------+------+
| linxuprobe1 |    30 |  518 |
| linxuprobe2 |    50 |  518 |
| linxuprobe4 |   100 |  518 |
+-------------+-------+------+
3 rows in set (0.000 sec)

匹配的条件越多,获得信息就越精准。在WHERE命令的后面追加AND操作符,可以进行多次匹配。例如找到这本价格为30元,页数为518的书籍名称;

MariaDB [linuxprobe]> SELECT * from mybook WHERE price=30 AND page=518;
+-------------+-------+------+
| name        | price | page |
+-------------+-------+------+
| linxuprobe1 |    30 |  518 |
+-------------+-------+------+
1 row in set (0.000 sec)

六、数据库的备份及恢复

mysqldump命令用于备份数据库数据,格式为"mysaldump [参数] 数据库名称]”。其中参数与mysql命令大致相同,-u参数用于定义登录数据库的账户名称,-p参数代表密码提示符。下面将linuxprobe数据库中的内容导出成一个文件,并保存到root管理员的家目录中;

[root@Linux ~]# mysqldump -u root -p linuxprobe > /root/linuxprobeDB.dump
Enter password: # 输入管理员的数据库密码

然后进入MariaDB数据库管理系统,彻底删除linuxprobe数据库,这样mybook数据表单也将被彻底删除。然后重新建立linuxprobe数据库;

[root@Linux ~]# mysql -u root -p
Enter password: MariaDB [(none)]> SHOW databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
+--------------------+
3 rows in set (0.000 sec)MariaDB [(none)]> CREATE DATABASE linuxprobe;
Query OK, 1 row affected (0.000 sec)

接下来进行数据恢复;使用输入重定向符把刚刚备份的数据库文件导入到mysql命令中,然后执行该命令。接下来登录到MariaDB数据库,就又能看到linuxprobe数据库以及mybook数据表单了。数据库恢复成功!

[root@Linux ~]# mysql -u root -p linuxprobe < /root/linuxprobeDB.dump
Enter password: 
[root@Linux ~]# mysql -u root -p
Enter password: MariaDB [(none)]> use linuxprobe;
Database changedMariaDB [linuxprobe]> SHOW tables;
+----------------------+
| Tables_in_linuxprobe |
+----------------------+
| mybook               |
+----------------------+
1 row in set (0.000 sec)MariaDB [linuxprobe]> describe mybook;
+-------+----------+------+-----+---------+-------+
| Field | Type     | Null | Key | Default | Extra |
+-------+----------+------+-----+---------+-------+
| name  | char(15) | YES  |     | NULL    |       |
| price | int(11)  | YES  |     | NULL    |       |
| page  | int(11)  | YES  |     | NULL    |       |
+-------+----------+------+-----+---------+-------+
3 rows in set (0.001 sec)

致谢

在此,我要对所有为知识共享做出贡献的个人和机构表示最深切的感谢。同时也感谢每一位花时间阅读这篇文章的读者,如果文章中有任何错误,欢迎留言指正。 

学习永无止境,让我们共同进步!!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/49573.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

操作系统——笔记(1)

操作系统是管理计算机硬件资源&#xff0c;控制其他程序运行并为用户提供交互操作界面的系统软件的集合&#xff0c;控制和管理着整个计算机系统的硬件和软件资源&#xff0c;是最基本的系统软件。 常见的操作系统&#xff1a;ios、windows、Linux。 计算机系统的结构层次&am…

css气泡背景特效

css气泡背景特效https://www.bootstrapmb.com/item/14879 要创建一个CSS气泡背景特效&#xff0c;你可以使用CSS的伪元素&#xff08;:before 和 :after&#xff09;、border-radius 属性来创建圆形或椭圆形的“气泡”&#xff0c;以及background 和 animation 属性来设置背景…

Dify中接入GPT-4o mini模型

GPT-4o mini模型自己承认是基于GPT-3.5架构的模型&#xff0c;有图有真相&#xff1a; 一.GPT-4o mini官网简介 GPT-4o mini&#xff08;“o"代表"omni”&#xff09;是小型型号类别中最先进的型号&#xff0c;也是OpenAI迄今为止最便宜的型号。它是多模态的&#x…

hadoop大数据安全管理:ldap、keberos、ranger

hadoop大数据中认证一般用keberos&#xff0c;授权用ranger&#xff0c;kerberos和Ldap组件共同组成整个集群的安全鉴权体系&#xff0c;Ldap负责用户数据存储。 kerberos Kerberos 是一种网络认证协议&#xff0c;用于在不安全的网络中以安全的方式对用户和服务进行身份验证。…

【MySQL】Ubuntu22.04 安装 MySQL8 数据库详解

&#x1f525;博客主页&#xff1a; 小羊失眠啦. &#x1f3a5;系列专栏&#xff1a;《C语言》 《数据结构》 《C》 《Linux》《MySQL》《Qt》 ❤️感谢大家点赞&#x1f44d;收藏⭐评论✍️ 一、安装目录 1.1 更新软件源 sheepAron:/root$ sudo apt update1.2 安装mysql_ser…

Spring之Spring Bean的生命周期

Spring Bean的生命周期 通过BeanDefinition获取bean的定义信息调用构造函数实例化beanBean的依赖注入处理Aware接口&#xff08;BeanNameAware、BeanFactoryAware、ApplicationContextAware&#xff09;Bean的后置处理器BeanPostProcessor-前置初始化方法&#xff08;Initiali…

UE4 自动换行——按排序关键字1.2.3.

要自动换行的字符串举例&#xff1a;“有效节点为:1.demo-worker-02 2.demo-worker-01 3.demo-master-01” 1.获取相邻两位字符串&#xff0c;组合后与关键字比较 2.当两位字符串与关键字相等&#xff0c;附加一次换行 3.其他例如 1)2)3)、(1)(2)(3)、<1><2><…

springboot配置文件如何读取pom.xml的值

比如想读取profile.active的值&#xff0c;默认属性为pro 在maven中加入以下插件&#xff1a; <plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-resources-plugin</artifactId><version>3.2.0</version>&l…

goenv丝滑控制多版本go

安装 先装下goenv brew install goenv去 ~/.bash_profile 添加一下 export GOENV_ROOT"$HOME/.goenv" export PATH"$GOENV_ROOT/bin:$PATH" eval "$(goenv init -)"执行一下让配置生效 source ~/.bash_profile插一嘴&#xff0c;如果之前是在…

保持形态真实性的大脑生成建模| 文献速递-基于人工智能(AI base)的医学影像研究与疾病诊断

Title 题目 Realistic morphology-preserving generative modelling of the brain 保持形态真实性的大脑生成建模 01 文献速递介绍 医学影像研究通常受到数据稀缺和可用性的限制。治理、隐私问题和获取成本都限制了医学影像数据的访问&#xff0c;加上深度学习算法对数据的…

(十九)原生js案例之h5地里位置信息与高德地图的初使用

h5 地里位置信息 1. 获取当前位置信息 window.onload function () {const oBtn document.querySelector("#btn");const oBox document.querySelector("#box");oBtn.onclick function () {window.navigator.geolocation.getCurrentPosition(function (…

SQL每日一题:游戏玩法分析 I

题干 活动表 Activity&#xff1a; --------------------- | Column Name | Type | --------------------- | player_id | int | | device_id | int | | event_date | date | | games_played | int | --------------------- 在 SQL 中&#xff0c;表的主键是 (player_id, eve…

49 IRF 经典案例

49 IRF 经典案例 一 H3C-FWW-RF 脚本 <IRF-MATER-FW1000>display current-configuration #version 7.1.064, Alpha 7164 #sysname IRF-MATER-FW1000 # context Admin id 1 #telnet server enable #irf mac-address persistent timerirf auto-update enableundo irf l…

案例研究|柯尼卡美能达软件开发(大连)有限公司基于DataEase构筑内部数据可视化体系

柯尼卡美能达软件开发&#xff08;大连&#xff09;有限公司于2007年5月25日注册成立。公司以“洞悉在工作的人们真实情况&#xff0c;探寻他们的愿望&#xff0c;持续提供使人们更加幸福的服务”为使命&#xff0c;致力于系统品质测试服务、软件开发服务、IT安全服务、高级BPO…

2024最新手机软件APP下载排行网站源码 软件下载站PHP源码

源码介绍 这是一款简洁蓝色的手机软件下载应用排行、平台和最新发布网站源码&#xff0c;主要包括主页、APP列表页、APP详情介绍页、新闻资讯列表、新闻详情页、关于我们等模块页面。 软件下载站PHP网站源码&#xff0c;简单的部署上线&#xff0c;访问首页安装程序&#xff…

小程序收银视频介绍

千呼新零售2.0系统是零售行业连锁店一体化收银系统&#xff0c;包括线下收银线上商城连锁店管理ERP管理商品管理供应商管理会员营销等功能为一体&#xff0c;线上线下数据全部打通。 适用于商超、便利店、水果、生鲜、母婴、服装、零食、百货、宠物等连锁店使用。 详细介绍请…

【测开能力提升-Javascript】JavaScript运算符流程结构

1. 递增递减运算符 <!DOCTYPE html> <html lang"en"> <head><meta charset"UTF-8"><title>Title</title><script>// 前置递增运算符var age10age //类似于ageage1&#xff0c; 先加1后返回值alert(age)// 后置…

总结一些vue3小知识3

1.限制时间选择器只能选择后面的日期 说明&#xff1a;disabled-date属性是一个用来判断该日期是否被禁用的函数&#xff0c;接受一个 Date 对象作为参数。 应该返回一个 Boolean 值。 <el-date-picker class"w180" v-model"datas.form.timeDate[0]" …

Shiro安全框架(上)

目录 第一章 权限概述 1、什么是权限 2、身份认证概念-Authentication 【1】什么是认证 【2】对象 2、用户授权概念-Authorization 【1】什么是授权 【2】授权流程 第二章 Shiro概述 1、Shiro简介 【1】什么是Shiro? 【2】Shiro 的特点 2、核心组件 第三章 Shiro…

HormonyOs之 路由简单跳转

Navigation路由相关的操作都是基于页面栈NavPathStack提供的方法进行&#xff0c;每个Navigation都需要创建并传入一个NavPathStack对象&#xff0c;用于管理页面。主要涉及页面跳转、页面返回、页面替换、页面删除、参数获取、路由拦截等功能。 Entry Component struct Index …