centos 使用总结
1.ssh用putty
http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html
2.安装mysql
http://os.51cto.com/art/201002/184568.htm
3.开启mysql的远程连接
http://www.fantxi.com/blog/archives/enable-remote-access-mysql-centos/
mysql-uroot-pmysql#第1个mysql是执行命令,第2个mysql是系统数据名称
在mysql控制台执行:
grantallprivilegeson*.*to'root'@'%'identifiedby'123456'withgrantoption;
#root是用户名,%代表任意主机,'123456'指定的登录密码(这个和本地的root密码可以设置不同的,互不影响)
flushprivileges;#重载系统权限
exit;
允许3306端口
iptables-IINPUT-ptcp-mstate--stateNEW-mtcp--dport3306-jACCEPT
#查看规则是否生效
iptables-L-n#或者:serviceiptablesstatus
#此时生产环境是不安全的,远程管理之后应该关闭端口,删除之前添加的规则
iptables-DINPUT-ptcp-mstate--stateNEW-mtcp--dport3306-jACCEPT
PS,上面iptables添加/删除规则都是临时的,如果需要重启后也生效,需要保存修改:
serviceiptablessave#或者:/etc/init.d/iptablessave
另外,
vi/etc/sysconfig/iptables#加上下面这行规则也是可以的
-AINPUT-ptcp-mstate--stateNEW-mtcp--dport3306-jACCEPT
远程管理数据库的软件,win系统下可以使用SQLyog,用了几种远程软件,感觉这个用起来蛮不错的。
4.将mysql放入启动列表里:
将CentOSMysql放入到启动服务列表中的方法
[root@sample ~]# chkconfig mysqld on ← 设置MySQL服务随系统启动自启动 [root@sample ~]# chkconfig --list mysqld ← 确认MySQL自启动 mysqld 0:off 1:off 2:on 3:on 4:on 5:on 6:off ← 如果2--5为on的状态就OK
5.安装tomcat
http://albany.blog.51cto.com/3440797/671872
其余同mysql
6.yum的使用:
http://blog.cnr.cn/18/viewspace-8099.html
http://www.blogjava.net/jvict/articles/305149.html
7.安装java7
http://www.th7.cn/Program/java/2011/09/01/41211.shtml