信创国产化中间件在数字化转型中的关键作用与挑战
948
2022-08-24
#yyds干货盘点# gitlab数据库的登陆处理
**.***.**.** gitlab 库的登陆处理
cat /var/opt/gitlab/gitlab-rails/etc/database.yml 查看数据库配置信息production:adapter: postgresqlencoding: unicodecollation:database: gitlabhq_productionpool: 10username: 'gitlab'password:host: '/var/opt/gitlab/postgresql'port: 5432socket:sslmode:sslrootcert:sslca:cat /etc/passwd 查看postgres用户root:x:0:0:root:/root:/bin/bashbin:x:1:1:bin:/bin:/sbin/nologinshutdown:x:6:0:shutdown:/sbin:/sbin/shutdownhalt:x:7:0:halt:/sbin:/sbin/haltgopher:x:13:30:gopher:/var/gopher:/sbin/nologinftp:x:14:50:FTP User:/var/ftp:/sbin/nologinnobody:x:99:99:Nobody:/:/sbin/nologinsshd:x:74:74:Privilege-separated SSH:/var/empty/sshd:/sbin/nologingitlab-- gitlab-psql //登陆用户-sh-4.1$ psql --help 查看帮助-sh-4.1$ psql -h /var/opt/gitlab/postgresql -d gitlabhq_production 连接到gitlabhq_production库gitlabhq_production=# \l 看数据库gitlabhq_production=# \dt 查看多表gitlabhq_production=# \d test 查看单表gitlabhq_production=# \di 查看索引gitlabhq_production=# select spcname from pg_tablespace; 查看所有表空间gitlabhq_production=# SELECT * FROM web_hooks; 查看表数据gitlabhq_production=# SELECT count(*) FROM web_hooks; 查看数据条数gitlabhq_production=# UPDATE web_hooks SET url = '//修改webhook 的urlmydb=> SELECT version(); 查看版本
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~