新安装的Oracle11g,不料在使用的时候没记住安装时的用户名和密码. 不用担心,打开sqlplus. 按如下步骤,新建一个登陆用户: 第一步:以sys登陆 sys/密码 as sysdba 此处的密码任意字符都能登陆上. sys/manager as sysdba 登陆成功后就可以创建新用户了. 第二步: 创建用户 语法: CREATE USER 用户名 IDENTIFIED BY 密码create user admin identified by orcl; 将刚创建的用户解锁语法:…
在Windows中进行安装.访问https://git-scm.com/,点击Downloads for Windows,我下载的是Git-2.16.2-64-bit.exe.都按照默认选项即可,其中有一个选项为Checkout Windows-style,commit Unix-style line endings这是因为GitHub中公开的代码大部分都是以Mac或Linux中的LF(Line Feed).然而,由于Windows中是以CRLF(Carriage Return+Line Fee…
报错截图:Tomcat Manager App--403 Access Denied You are not authorized to view this page 解决办法: 1.关闭Tomcat(安装目录下bin文件下shutdown批处理文件) 2.找到安装目录下conf文件夹tomcat-users.xml文件 3.在xml文件<tomcat-users></tomcat-user>标签中添加以下配置信息 <role rolename="manager&q…
修改方法: service mysqld stop mysqld_safe --skip-grant-tables & mysql -u root use mysql; update user set authentication_string=password('1111') where user='root'; flush privileges; quit service mysqld restart或者用 /etc/init.d/mysql start启动 启动后用命令建数据库是还是会提示…