基于Linux环境Tomcat-MySQL的服务器搭建

来源:互联网 发布:平面设计和美工的区别 编辑:程序博客网 时间:2024/05/18 02:22
3、解压jdk和tomcat

[plain] view plaincopy在CODE上查看代码片派生到我的代码片
  1. mkdir /nac/www  
  2. mkdir /nac/www  
  3. cd  /nac/www  
  4. tar zxvf jdk-7u25-linux-i586.gz    
  5. tar zxvf apache-tomcat-7.0.42.tar.gz  
  6.   
  7. chmod –R 755  /nac  
  8.   
  9. mv jdk1.7.0_25/  jdk  
  10. mv apache-tomcat-7.0.42  tomcat   

4、配置环境变量

[plain] view plaincopy在CODE上查看代码片派生到我的代码片
  1. vi /etc/profile  
  2. export JAVA_HOME=/nac/www/jdk  
  3. export PATH=$JAVA_HOME/bin:$JRE_HOME/jre/bin:$PATH  
  4. export CLASSPATH=.:$JAVA_HOME/lib:$JRE_HOME/lib:$LCASSPATH  
  5. export CATALINA_HOME=/nac/www/tomcat  
  6. export CLASSPATH=.:$JAVA_HOME/lib:$CATALINA_HOME/lib  
  7. export PATH=$PATH:$CATALINA_HOME/bin  
  8.   
  9. 刷新配置  
  10. source /etc/profile  

5、修改*.sh权限和执行脚本

[plain] view plaincopy在CODE上查看代码片派生到我的代码片
  1. cd /apache-tomcat/bin/  
  2. chmod 777 *.sh  
  3. bash catalina.sh start  

[plain] view plaincopy在CODE上查看代码片派生到我的代码片
  1. bash /apache-tomcat/bin/catalina.sh start  

6、修改iptables

[plain] view plaincopy在CODE上查看代码片派生到我的代码片
  1. vi /etc/sysconfig/iptables  

在里面添加

[plain] view plaincopy在CODE上查看代码片派生到我的代码片
  1. -A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT    //添加mysql  
  2. -A INPUT -m state --state NEW -m tcp -p tcp --dport 8080 -j ACCEPT    //添加tomcat  

7、修改mysql和tomcat开机启动

[plain] view plaincopy在CODE上查看代码片派生到我的代码片
  1. Chkconfig mysqld on  
  2.  Chkconfig mysqld –list  检查开机启动  
  3. 修改vi /etc/rc.d/rc.local  
  4. /apache-tomcat/bin/catalina.sh start  

8、添加mysql的用户名和密码

[plain] view plaincopy在CODE上查看代码片派生到我的代码片
  1. Mysql –u root  
  2.   
  3. GRANT ALL PRIVILEGES ON *.* TO hupu@"%" IDENTIFIED BY 'hupu' WITH GRANT OPTION;  
  4.   
  5. GRANT ALL PRIVILEGES ON *.* TO hupu@localhost IDENTIFIED BY 'hupu' WITH GRANT OPTION;  
  6.   
  7.   
  8.   
  9. GRANT ALL PRIVILEGES ON *.* TO root@"%" IDENTIFIED BY 'root' WITH GRANT OPTION;  
  10.   
  11. GRANT ALL PRIVILEGES ON *.* TO root@localhost IDENTIFIED BY 'root' WITH GRANT OPTION;  

9、在浏览器输入服务器的ip:8080,如下:“10.10.2.221:8080”,

当看到这里页面的时候,说明一切都ok了,就这样可以运行部署Java项目的服务器就搭建好了!


www.aibang.com/show/700432115-423278073/product/15432865.html
www.aibang.com/show/700432115-423278073/product/15432949.html
www.aibang.com/show/700432115-423278073/product/15433025.html
www.aibang.com/article/700432115-423278073/product/15433121.html
www.aibang.com/show/700432115-423278073/product/15433199.html
www.aibang.com/show/700432115-423278073/product/15433289.html
www.aibang.com/show/700432115-423278073/product/15433377.html
www.aibang.com/show/700432115-423278073/product/15433463.html
www.aibang.com/show/700432115-423278073/product/15433527.html
www.aibang.com/show/700432115-423278073/product/15433611.html
www.aibang.com/show/700432115-423278073/product/15433685.html
www.aibang.com/article/700432115-423278073/product/15433741.html
www.aibang.com/show/700432115-423278073/product/15433911.html
www.aibang.com/show/700432115-423278073/product/15433965.html
www.aibang.com/show/700432115-423278073/product/15434017.html
www.aibang.com/show/700432115-423278073/product/15434105.html
www.aibang.com/show/700432115-423278073/product/15434189.html
www.aibang.com/article/700432115-423278073/product/15434241.html
www.aibang.com/article/700432115-423278073/product/15434701.html
www.aibang.com/show/700432115-423278073/product/15434759.html
www.aibang.com/show/700432115-423278073/product/15434833.html
www.aibang.com/show/700432115-423278073/product/15434903.html
www.aibang.com/show/700432115-423278073/product/15434969.html
www.aibang.com/show/700432115-423278073/product/15435035.html
www.aibang.com/show/700432115-423278073/product/15435079.html
www.aibang.com/show/700432115-423278073/product/15435805.html
www.aibang.com/show/700432115-423278073/product/15435849.html
www.aibang.com/show/700432115-423278073/product/15436053.html
www.aibang.com/show/700432115-423278073/product/15436085.html
www.aibang.com/article/700432115-423278073/product/15436121.html
www.aibang.com/show/700432115-423278073/product/15436191.html
www.aibang.com/show/700432115-423278073/product/15436233.html
www.aibang.com/show/700432115-423278073/product/15436377.html
www.aibang.com/show/700432115-423278073/product/15436437.html
www.aibang.com/article/700432115-423278073/product/15436481.html
www.aibang.com/show/700432115-423278073/product/15436905.html
www.aibang.com/show/700432115-423278073/product/15437189.html
www.aibang.com/show/700432115-423278073/product/15437211.html
www.aibang.com/show/700432115-423278073/product/15437235.html
www.aibang.com/show/700432115-423278073/product/15437267.html

0 0