我在使用vs2010制作64位安装包时出现了以下问题: File targeting 'AMD64' is not compatible with the project's target platform 'x86' Error  File 'NGlbComm.DLL' targeting 'AMD64' is not compatible with the project's target platform 'x86'   .................................…
错误信息: 个人理解此错误的大概意思是:打包的文件是64位的但是打包后的文件设置的是32位的,就出现冲突了. 解决方案:选择打包程序项目的属性窗口设置TargetPlatform属性为对应的值,本项目的文件是64位的所以设置打包生成的程序为64位的,如下:…
错误代码: Exception: Traceback (most recent call last): File , in check_if_exists self.satisfied_by = pkg_resources.get_distribution(str(no_marker)) File , in get_distribution dist = get_provider(dist) File , in get_provider ] File , in find raise Versio…
遇到这个错误是在Apache Tomcat上部署应用程序的时候遇到的,具体的错误描述是: java.lang.UnsupportedClassVersionError: HelloWorld has been compiled by a more recent version of the Java Runtime (class file version 53.0), this version of the Java Runtime only recognizes class file vers…
运行cnpm install后,出现 虽然提示不适合Windows,但是问题好像是sass loader出问题的.所以只要执行下面命令即可: 方案一: cnpm rebuild node-sass #不放心可以重新安装下 cnpm install 方案二: npm update npm install nodejs node_modules/node-sass/scripts/install.js npm rebuild node-sass   一般只要执行方案一就够了.然后再运行,OK.…
错误信息如下: exception in initAndListen: 12596 old lock file, terminating 基本上都是由于服务器断电等异常中断重启引起 解决方法 1.删除data目录中的.lock文件 2.dos进入bin目录 运行  mongod.exe --repair 3.启动mongod就可以了…
当在终端执行sudo命令时,系统提示“luckchengis not in the sudoers file”: $ sudo ls Password: luckcheng is not in the sudoers file. This incident will be reported. 其实就是没有权限进行sudo,解决方法如下(这里假设用户名是luckcheng): 1.切换到超级用户:$ su 2.打开/etc/sudoers文件:$vi /etc/sudoers .修改文件内容: 找…
提示错误信息 www@iZ236j3sofdZ:~$ ifconfig Command 'ifconfig' is available in '/sbin/ifconfig' The command could not be located because '/sbin' is not included in the PATH environment variable. This is most likely caused by the lack of administrative privil…
修改主机名:vim /etc/sysconfig/network 1.添加用户,首先用adduser命令添加一个普通用户,命令如下: #adduser tommy //添加一个名为tommy的用户 #passwd tommy   //修改密码 Changing password for user tommy. New UNIX password:     //在这里输入新密码 Retype new UNIX password:  //再次输入新密码 passwd: all authenticat…
解决方法: 登录出现了这个错误提示:553 Could not create file SELinux设置如下 查看SELinux设置 [root@localhost ~]# getsebool -a|grep ftp allow_ftpd_anon_write –> off allow_ftpd_full_access –> off allow_ftpd_use_cifs –> off allow_ftpd_use_nfs –> off ftp_home_dir –> on…