CentOS7-java测试环境yum安装(java+tomcat+mysql)

本文介绍了在CentOS7系统中如何简化安装Java、Tomcat和MySQL的过程。在安装MySQL时遇到问题,由于CentOS7已不支持mysql,转而安装了MariaDB作为MySQL的兼容替代品。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

下面的安装过程都是比较简单化的,看了一个视频但是由于centos版本变更里面很多命令都不适用了,也花了很长时间查什么命令能在centos7上跑。刚接触Linux不久还是小白,如果看到文中有见解错误,欢迎不吝指出

jdk安装

yum install java*

验证 java -version

Tomcat安装

yum install tomcat*

启动服务

systemctl start tomcat.service

查看服务状态

systemctl status tomcat.service

开机自启动

systemctl enable tomcat.service

验证:

浏览器输入 http://ip地址:8080 可以访问tomcat首页
项目部署

/var/lib/tomcat/webapps

配置文件在 /etc/tomcat

日志文件 /var/log/tomcat

MySQL安装

视频中通过"yum install mysql*"命令安装MySQL,尽管安装成功了

启动MySQL数据库提示:

Failed to start mysqld.service: Unit not found

一查才知道在CentOS7中已经不支持mysql,

安装mysql的作者另起炉灶的开源版本:maria DB

(maria DB如同 MySQL 的影子版本,玛莉亚数据库是 MySQL 的一个分支版本(branch),而不是衍生版本(folk),提供的功能可和 MySQL 完全兼容)

1.安装:

yum install -y mariadb-server

 

2.启动maria DB服务:

systemctl start mariadb.service

 

(说明:CentOS 7.x开始,CentOS开始使用systemd服务来代替daemon,原来管理系统启动和管理系统服务的相关命令全部由systemctl命令来代替。)

 

3.将mariadb服务添加至开机自启动:

systemctl enable mariadb.service

安装mariadb,默认是无密码的,但一般是指要设置密码的

1、进到数据库进行操作
[root@localhost etc]# mysql

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

Your MariaDB connection id is 7

Server version: 5.5.41-MariaDB MariaDB Server

Copyright (c) 2000, 2014, Oracle, MariaDB Corporation Ab and others.

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

MariaDB [(none)]> mysql

-> ;


2、选择数据库
MariaDB [(none)]> use mysql

Database changed

3、用户root添加密码
MariaDB [mysql]> update user set password=password("123456")where user='root';

Query OK, 0 rows affected (0.00 sec)

Rows matched: 4 Changed: 0 Warnings: 0

4、赋予权限
MariaDB [mysql]> flush privileges;

Query OK, 0 rows affected (0.00 sec)

5、退出,重新登录
MariaDB [mysql]> exit

Bye

6、尝试无密码是否可以登录
[root@localhost etc]# mysql

提示错误

ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

7、输入密码登陆
[root@localhost etc]# mysql -u root -p123456

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

Your MariaDB connection id is 9

Server version: 5.5.41-MariaDB MariaDB Server

Copyright (c) 2000, 2014, Oracle, MariaDB Corporation Ab and others.

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

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值