下面的安装过程都是比较简单化的,看了一个视频但是由于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.