本篇内容主要讲解“Linux下怎么部署java项目”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Linux下怎么部署java项目”吧!
其实Fedora本身就自带的有OpenJDK。可以使用java -version查看版本信息。这里介绍去官网自己下载jdk的步骤。
在官网下载jdk 下载点击这里 32位的电脑就下载x86,如果是64位就下载x64。注意要下载Linux版本用箭头标注的两个。
使用 xshell 和 xftp 工具将文件传输到Linux虚拟机中,工具下载链接
参照Fedora的文档进行操作,将jdk替换为自己在网上下载的。 创建一个文件夹:
sudo mkdir -p /usr/local/java
将压缩包移动到该文件夹并进行解压:
sudo cp -r jdk-8u40-linux-x64.tar.gz /usr/local/java sudo tar xvzf jdk-8u45-linux-x64.tar.gz
配置环境变量:
sudo nano /etc/profile // 在文件末尾添加 JAVA_HOME=/usr/local/java/jdk1.8.0_45 PATH=$PATH:$HOME/bin:$JAVA_HOME/binexport JAVA_HOMEexport PATH
设置告诉系统新的Oracle Java版本可用:
sudo update-alternatives --install“ / usr / bin / java”“ java”“ /usr/local/java/jdk1.8.0_45/bin/java” sudo update-alternatives --install“ / usr / bin / javac”“ javac”“ /usr/local/java/jdk1.8.0_45/bin/javac” 1 sudo update-alternatives --install“ /usr/bin/javaws.itweb”“ javaws.itweb”“ /usr/local/java/jdk1.8.0_45/bin/javaws.itweb” 1
将Oracle Java JDK设置为默认值:
sudo update-alternatives --set java /usr/local/java/jdk1.8.0_45/bin/java sudo update-alternatives --set javac /usr/local/java/jdk1.8.0_45/bin/javac sudo update-alternatives --set javaws.itweb /usr/local/java/jdk1.8.0_45/bin/javaws.itweb
重新加载配置文件:
source /etc/profile
重启系统:
reboot
查看java版本:
java -version
我是直接用yum进行安装,不过最新下载下来的不是mysql而是和mysql差不多的数据库mariaDB。 yum install -y mysql-server mysql mysql-devel 可以自动安装好mysql 不过安装好之后我启动mysql之后出现了如下问题:
[root@localhost ~]# systemctl start mysql.serviceFailed to start mysql.service: Unit mysql.service not found.
解决方法如下:
# yum install mariadb-server -y //如果已安装可以省略# systemctl start mariadb.service //启动服务# systemctl enable mariadb.service //开机启动服务# mysql -u root -p //登录mysql
为了安全,我们还要进行一次数据库加固:
[root@~ localhost]#mysql_secure_installation #数据库安全加固NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY! In order to log into MariaDB to secure it, we'll need the current password for the root user. If you've just installed MariaDB, and you 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 MariaDB root user without the proper authorisation. Set root password? [Y/n] Y #是否设置root的登录密码:Y需要设置 New password: Re-enter new password: Password updated successfully! #密码已设置成功 Reloading privilege tables.. ... Success! By default, a MariaDB installation has an anonymous user, allowing anyone to log into MariaDB without having to have a user account created for them. This is intended only for testing, and to make the installation go a bit smoother. You should remove them before moving into a production environment. Remove anonymous users? [Y/n] Y #是否移除anonymous用户 ... Success! Normally, root should only be allowed to connect from 'localhost'. This ensures that someone cannot guess at the root password from the network. Disallow root login remotely? [Y/n] Y #是否不允许root的远程登录 ... Success! By default, MariaDB comes with a database named 'test' that anyone can access. This is also intended only for testing, and should be removed before moving into a production environment. Remove test database and access to it? [Y/n] n #是否移除test数据库,并禁止访问 ... skipping. Reloading the privilege tables will ensure that all changes made so far will 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 MariaDB installation should now be secure. Thanks for using MariaDB!
完成之后,就可以启动MySQL服务进行登录,建库和建表操作。可以将本机中的sql脚本导出然后发送到虚拟机中使用 source+路径的方式进行导入 例如:source /etc/local/SQLfile/javaweb.sql 我这里还有另外一种方法,就是开启MariaDB的远程服务,让我们用本机的Navicat即可连接到虚拟机中的MariaDB服务。开启方法: 首先创建一个用户,并赋予他所有的权限:
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%'IDENTIFIED BY '123456' WITH GRANT OPTION;
这里就是创建了一个root用户,他的密码是123456,享受各种权限,这个用来在本机的Navicat上进行登录。之后不要忘记刷新权限:
FLUSH PRIVILEGES;
之后就可以在Navicat上进行连接了:
这里还要区分一下,如果你是springboot项目,那么就可以直接打包成为jar包,放在虚拟机任意位置,使用java -jar ProjectName 即可运行。 方法一:打包jar包的方法:
方法二:
如果是普通的maven项目,需要打包成为war包,然后放在tomcat的webapps目录中。 打包war包的方法与打包jar类似,只有一个步骤不一样,那就是上边jar部分需要改成war。
xshell连接不上虚拟机
解决:Fedora中没有开启ssh服务,使用命令
# service sshd start
Fedora不能切换到root用户
解决: 这个是因为安装的时候没有默认生成root,这里需要我们初始化一个root,使用如下命令:
# sudo su# passwd root// 之后输入两次密码即可,注意密码位数不能小于8位
设置ssh服务开机自启动
由于虚拟机每次启动之后都要重新开启一下ssh服务,所以这里我们索性直接将它加入到开机启动项中,允许其开机自启。设置方法:
设置开机自动启动# systemctl enable sshd关闭开机自动启动# systemctl disable sshd设置好之后重启电脑即可# reboot
到此,相信大家对“Linux下怎么部署java项目”有了更深的了解,不妨来实际操作一番吧!这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。