说明:将net网络配置 改为192.168.126.0
修改dhcp设置
在windows中 利用cmd命令 ipconfig 检查net8IP地址 是否为192.168.126.1 即可.
说明:如果Linux操作系统开机之后, 通过IP addr 命令检查IP地址时,不能正常的展现IP地址,如图所示:
问题描述: CentOS7 版本中有2处网络配置 1.NetworkManager 2.network,有时在启动Linux系统时,可能导致2块网卡的配置产生冲突.导致无法获取IP地址.
通过重启网卡的方式实现IP的获取.,
命令1:systemctl stop NetworkManager
命令2: service network restart
说明:Linux中程序的安装目录 在 /usr/local/src
PING www.baidu.com 校验是否有网. ctrl + c 表示进程结束.
1)安装命令: yum install mariadb-server
2).安装成功之后的提示
1.启动数据库 [root@localhost jdk1.8]# systemctl start mariadb
2.重启数据库 [root@localhost jdk1.8]# systemctl restart mariadb
3.关闭数据库 [root@localhost jdk1.8]# systemctl stop mariadb
说明:刚开始数据库中并没有设定用户名和密码.所以需要进行设定.
命令:mysql_secure_installation
1).进入数据库
2).检查数据库是否正常
1.show databases; 2.use mysql; 3.show tables;
3).查询数据库权限表
select host ,user from user where user=‘root’;
4).修改数据库权限
命令:
1.update user set host=’%’ where host=“localhost”;
2.select host,user from user where user=‘root’;
5).刷新数据库权限
命令: flush privileges;
说明:配置指防火墙的全局的变量. 如果操作了全局的(变量)开关,则影响的是下一次的防火墙操作.
1).永久关闭防火墙配置
systemctl disable firewalld.service
2).永久开启防火墙配置
systemctl enable firewalld.service
说明:如果需要对现有防火墙进行操作,则执行如下命令
[root@localhost jdk1.8]# systemctl stop firewalld.service
[root@localhost jdk1.8]# systemctl start firewalld.service
[root@localhost jdk1.8]# firewall-cmd --state
firewall-cmd --zone=public --add-port=3306/tcp --permanent
命令含义:
–zone #作用域
–add-port=80/tcp #添加端口,格式为:端口/通讯协议
–permanent #永久生效,没有此参数重启后失效
如果上述的操作一切正常,则测试数据库连接是否正确.
连接效果: