Ubuntu 8.10系统JAVA和MYSQL配置方法
欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 在安装jdk文档 前,必须到sun的网站下载jdk文档。你下载的文档可以是任意语言,包括中文例如你安装jdk5的文档,应该在安装前把下载的文档存放到/tmp /jdk-1_5_0-doc.zip;再例如你安装jdk6的文档,应
欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入
在安装jdk文档 前,必须到sun的网站下载jdk文档。你下载的文档可以是任意语言,包括中文例如你安装jdk5的文档,应该在安装前把下载的文档存放到/tmp /jdk-1_5_0-doc.zip;再例如你安装jdk6的文档,应该在安装前将下载的文档存放到 /tmp/jdk-6-doc.zip。当然你也可以不在安装前做这件事情,因为安装的过程会提示你这么做,请注意看终端窗口的提示。
【正文】
1、首先安装JDK
java6 在命令行输入 apt-get install sun-java6-jre sun-java6-jdk 可以自行选择是否安装jre
java5 在命令行输入 apt-get install sun-java5-jre sun-java5-jdk
多个jdk可以同时安装,而且可以随时更改当前的默认jdk
在命令行输入 sudo update-alternatives --config javac 来更改当前默认jdk
sun-java5-doc和sun-java6-doc是jdk的文档的安装程序,但是不包括jdk文档。
在安装jdk文档前,必须到sun的网站下载jdk文档。你下载的文档可以是任意语言,包括中文例如你安装jdk5的文档,应该在安装前把下 载的文档存放到/tmp/jdk-1_5_0-doc.zip;再例如你安装jdk6的文档,应该在安装前将下载的文档存放到 /tmp/jdk-6-doc.zip。当然你也可以不在安装前做这件事情,因为安装的过程会提示你这么做,请注意看终端窗口的提示。
写入环境变量 gedit /etc/environment
在编辑器中加入 JAVA_HOME=/usr/lib/jvm/java-6-sun
classpath不必配置,错误的classpath会导致许多问题。jvm会知道自带的classpath。对于自定义的classpath,可以在运行、编译时加上-classpath参数来指定。至于环境变量,当你写的程序需要时再指定也不迟
要使配置生效必须在命令行输入 . /etc/environment
如果需要还要修改系统虚拟机的优先级顺序调整: sudo gedit /etc/jvm
jdk安装完毕,在终端输入 java -version 查看是否安装成功(或直接输入java)
2、安装
从tomcat官方网站下载绿色的即可,解压后运行bin目录下的startup.sh
在浏览器输入http://localhost:8080 查看tomcat是否启动
要关闭tomcat只要运行bin目录下shutdown.sh即可
如果需要tomcat开机启动可以参照一下方法:
修改/etc/rc.local 文件 gedit /etc/rc.local 加入
JAVA_HOME=/usr/lib/jvm/java-6-sun
CLASSPATH=.:/usr/lib/jvm/java-6-sun/lib
JRE_HOME=/usr/lib/jvm/java-6-sun/jre
export JRE_HOME
export CLASSPATH
export JAVA_HOME
/home/allenwei/Tomcat/apache-tomcat-6.0.14/bin/startup.sh //你放tomcat的目录
修改/etc/profile 输入 gedit /etc/profile,增加以下行:
JAVA_HOME=/usr/lib/jvm/java-6-sun
CATALINA_HOME=/home/test/Tomcat/apache-tomcat-6.0.14
export JAVA_HOME CATALINA_HOME
重启系统后tomcat就可以随开机启动了
3、安装mysql
首先 sudo apt-get install mysql-server mysql-client
安装完成后输入 sudo /etc/init.d/mysql start 启动mysql
此时需要修改root的密码
查看默认密码输入 sudo gedit /etc/mysql/debian.cnf 在[client]段可以看到用户名密码
输入 mysql -u root -p 登录,提示输入密码,输入在debian.cnf文件中的密码
修改密码 输入 GRANT ALL PRIVILEGES ON *.* TO root@localhostIDENTIFIED BY "你要修改的密码"
此时mysql 的安装完成
您也可以安装mysql 的图形化管理工具 sudo apt-get mysql-admin mysql-query-browser
4、eclipse 和 netbeans 的安装就很简单了,从官方网站上下载 deb包,安装即可

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the "MySQL Native Password" plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is

Capsules are three-dimensional geometric figures, composed of a cylinder and a hemisphere at both ends. The volume of the capsule can be calculated by adding the volume of the cylinder and the volume of the hemisphere at both ends. This tutorial will discuss how to calculate the volume of a given capsule in Java using different methods. Capsule volume formula The formula for capsule volume is as follows: Capsule volume = Cylindrical volume Volume Two hemisphere volume in, r: The radius of the hemisphere. h: The height of the cylinder (excluding the hemisphere). Example 1 enter Radius = 5 units Height = 10 units Output Volume = 1570.8 cubic units explain Calculate volume using formula: Volume = π × r2 × h (4

Spring Boot simplifies the creation of robust, scalable, and production-ready Java applications, revolutionizing Java development. Its "convention over configuration" approach, inherent to the Spring ecosystem, minimizes manual setup, allo

A stack is a data structure that follows the LIFO (Last In, First Out) principle. In other words, The last element we add to a stack is the first one to be removed. When we add (or push) elements to a stack, they are placed on top; i.e. above all the

The page is blank after PHP connects to MySQL, and the reason why die() function fails. When learning the connection between PHP and MySQL database, you often encounter some confusing things...

This guide explores several Java methods for comparing two ArrayLists. Successful comparison requires both lists to have the same size and contain identical elements. Methods for Comparing ArrayLists in Java Several approaches exist for comparing Ar

IntelliJ IDEA simplifies Spring Boot development, making it a favorite among Java developers. Its convention-over-configuration approach minimizes boilerplate code, allowing developers to focus on business logic. This tutorial demonstrates two metho
