1.mysql 安装前需要安装.net framework 框架
mysql 无法安装 最后一布,start server 服务起不来。
原因,为上一次mysql没有删除,干净,导入无法安装。 1. 错误193 2.不是win32 程序。
删除注册表,还有c盘的 C:\Documents and Settings\All Users\Application Data\MySQL (可能不是这个路径)
1.还有c在配置文件里改端口号,改server.xml文件中 8080为所需端口号。
<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" />
2.输入IP地址直接访问
<Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true"> <!--<Context path="" docBase="/REALPRO"/>--> <!-- SingleSignOn valve, share authentication between web applications Documentation at: /docs/config/valve.html --> <!-- <Valve className="org.apache.catalina.authenticator.SingleSignOn" /> --> <!-- Access log processes all example. Documentation at: /docs/config/valve.html Note: The pattern used is equivalent to using pattern="common" --> <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" prefix="localhost_access_log." suffix=".txt" pattern="%h %l %u %t "%r" %s %b" /> <!--<Context path="" docBase="../REALPRO"(修改此处) debug="0" reloadable="true"/> --> </Host>
首页在项目web.xml 下配置
3.中文乱码
所有页面 utf-8
first: 检查链接 1.private final static String url = "jdbc:mysql://localhost:3306/realproblem?useUnicode=true&characterEncoding=UTF-8";
url 是否设置编码
2.SHOW VARIABLES LIKE 'character_set_%'; 设置 utf-8 除了一个 binary .
注:写项目,数据库每个表,有个全使用英文数据,项目发布后,进行中英文测试,先英文,再中文。代码sql语句包含中文,无法再数据库查到数据,因为乱码,匹配不了。但是不会报错。但是在命令行,或者mysql 客户端 执行sql语句没有错误。