linux centos7配置java_linux环境centos7 配置java环境

1.安装jdk1.8

官网下载地址:

选择操作系统和对应的文件进行下载

直接下载tar.gz版本,不用安装,直接解压就可以

下载完以后,解压到/usr/local目录

[root@bogon hcb]# tar zxvf jdk-8u211-linux-x64.tar.gz -C /usr/local

2.安装tomcat

官方网内打不开了。 直接通过镜像下载

同样解压安装就可以

tar zxvf apache-tomcat-8.5.42.tar.gz -C /usr/local建立一个tomcat的快捷方式

ln -s apache-tomcat-8.5.42 tomcat启动:

[root@bogon tomcat]# pwd

/usr/local/tomcat

[root@bogon tomcat]# ./bin/startup.sh

3.添加防火墙例外,并重启

[root@bogon tomcat]# firewall-cmd --zone=public --add-port=8080/tcp --permanent

success

[root@bogon tomcat]# firewall-cmd --reload

4.物理机输入ip地址测试

3.安装Mysql

因为centos 7 默认源mariadb替换了mysql

所以要把mysql先添加到源上下载mysql源安装包

如果 Centos 系统版本大于7,默认源使用 mariadb 替换掉了 MySQL, 如果仍要安装 MySQL,只能采取源码安装。

安装mysql源

yum localinstall mysql57-community-release-el7-8.noarch.rpm

检查mysql的源是否安装成功

yum repolist enabled | grep “mysql.-community.”

安装Mysql

yum install mysql-community-server

启动Mysql

systemctl start mysqld

查看默认的root密码

[root@bogon hcb]# grep 'temporary password' /var/log/mysqld.log

2019-06-18T05:11:11.189330Z 1 [Note] A temporary password is generated for root@localhost: k(VPiD:wg7lh

修改root密码

提示;ERROR 1819 (HY000): Your password does not satisfy the current policy requirements

这是表示 你的新密码安全强度不够。增强密码强度就可以,注意区分大小写

[root@bogon hcb]# mysql -u root -p

Enter password:

Welcome to the MySQL monitor. Commands end with ; or \g.

Your MySQL connection id is 3

Server version: 5.7.26

Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'xdafdafdsaf2123231';

如何关闭密码策略

vi /etc/my.cnf 中最后添加 下面一行。表示 关闭密码策略

validate_password=off

重启mysql后生效

systemctl restart mysqld

mysql设定开机启动

[root@bogon hcb]# systemctl enable mysqld

[root@bogon hcb]# systemctl daemon-reload

systemctl 是centos7中用于控制系统服务的。以 前版本是service xxx start|stop

daemon 是linux的守护进程 ,用于后台长期不间断运行的程序

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值