Step1: 切换用户为postgres sudo su postgres Step2: 用postgres连接postgreSQL psql -U postgres Step3: 修改postgres密码 alter user postgres with password 'new password'; 现在postgres用户就拥有了新密码…
ubuntu 18.04 修改Apache默认目录 安装是直接运行 sudu apt install apache2 安装之后要修改目录 vi /etc/apache2/sites-available/000-default.conf 我将里面的内容修改成下面 <VirtualHost *:80> # The ServerName directive sets the request scheme, hostname and port that # the server uses to ide…
参考: ubuntu下的Samba配置:使每个用户可以用自己的用户名和密码登录自己的home目录 增加samba用户提示Failed to add entry for user Ubuntu可以直接在文件->属性里进行操作实现samba服务器安装 添加账户密码的方法 sudo smbpasswd -a jacket 添加的账户需要是系统用户…
[postgres@pg01 ~]$ psql -Upostgres -dpostgres postgres=# alter user postgres with password 'postgres'; ALTER ROLE 登录测试: [postgres@pg02 ~]$ psql -h 192.168.12.14 -p 5432 -U postgres -d postgres Password for user postgres:(输入刚刚修改的密码postgres) psql.bin (…
ifconfig // check Mac address sudo ifconfig eth0 down sudo ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx sudo ifconfig eth0 up ifconfig // check Mac address where is active 這方法重開機之後,會恢復原來的 Mac address…
命令行登入mysql show variables like '%timeout%':(其中有用的是: interactive_timeout 和wait_timeout 为28800,默认为8小时设置:) set interactive_timeout=764000; set wait_timeout=764000; (设置为10天) 执行show variables like '%timeout%':看看执行成功没有…
本质就是修改数据库mysql里面的数据表user一个字段,并执行如下一句mysql语句: UPDATE user SET password=PASSWORD('密码') WHERE user='root'; 就搞定咯,是不是很简单?下面是详细的教程,睁大眼睛哦.... 先进入mysql,不管用什么工具,比如我就是用的Navicat11.0工具,定位到mysql数据库: 第二步,在上一步的状态下,打开命令行,一般是按F6; 第三步:在命令行里面输入: UPDATE user SET passwor…