上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 55 下一页
摘要: RedHat: /etc/profile printf "%-8s %-25s %-4s %s\n" @@@@@ /etc/profile '==>' Commence printf "%-8s %-25s %-4s %s\n" @@@@@ /etc/profile '==>' Closure /e 阅读全文
posted @ 2022-02-16 17:26 ascertain 阅读(147) 评论(0) 推荐(0) 编辑
摘要: load data infile 'data.csv' into table project.tbl_data character set utf8mb4 fields terminated by ',' optionally enclosed '"' escaped by '"' lines te 阅读全文
posted @ 2022-02-16 11:43 ascertain 阅读(65) 评论(0) 推荐(0) 编辑
摘要: # Read more about SSH config files: https://linux.die.net/man/5/ssh_config Host * #IgnoreUnknown * AddKeysToAgent yes AddressFamily any BatchMode no C 阅读全文
posted @ 2022-02-16 11:15 ascertain 阅读(282) 评论(0) 推荐(0) 编辑
摘要: # Prerequisite dnf install libtool libtool-ltdl-devel openssl-devel tcp_wrappers cyrus-sasl-devel systemd-devel perl-devel # Account groupadd --gid 38 阅读全文
posted @ 2022-02-14 11:04 ascertain 阅读(268) 评论(0) 推荐(0) 编辑
摘要: StrongSwan: # ####################################### ####################################### # # # Operations # IPSec监听在UDP的500和4500两个端口,其中500是用来IKE密 阅读全文
posted @ 2022-02-14 11:01 ascertain 阅读(293) 评论(0) 推荐(0) 编辑
摘要: [Unit] Description=OpenLDAP Server Daemon Documentation=man:slapd Documentation=man:slapd-config Documentation=man:slapd-mdb After=syslog.target netwo 阅读全文
posted @ 2022-02-14 10:54 ascertain 阅读(116) 评论(0) 推荐(0) 编辑
摘要: tar -xf base.tar.gz --directory /data chown -R postgres.postgres /data chown -R 0700 /data sudo -u postgres /usr/lib/postgresql/10/bin/pg_ctl start -- 阅读全文
posted @ 2022-02-14 10:39 ascertain 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 从低位依次打印,并计算位数 n = int(input('number: ')) count = 0 while True: print(n % 10) n = n // 10 count += 1 if n == 0: break print('number of digits: ', count 阅读全文
posted @ 2022-02-13 16:06 ascertain 阅读(34) 评论(0) 推荐(0) 编辑
摘要: - hosts: database remote_user: root gather_facts: true tasks: - name: pp shell: | echo aaaaa ech bbbb ignore_errors: true - debug: msg="{{ ansible_dis 阅读全文
posted @ 2022-02-13 16:05 ascertain 阅读(57) 评论(0) 推荐(0) 编辑
摘要: ~/.pgpass hostname:port:database:username:password chmod 0600 ~/.pgpass PGPASSWORD=password psql --host=host --port=5432 --username postgres postgres 阅读全文
posted @ 2022-02-10 19:58 ascertain 阅读(27) 评论(0) 推荐(0) 编辑
摘要: #!/bin/env bash git init touch init git add -- . git commit -am init echo a >> main_file git add --all git commit -am 'main a' echo b >> main_file git 阅读全文
posted @ 2022-02-10 15:00 ascertain 阅读(34) 评论(0) 推荐(0) 编辑
摘要: init.gradle allprojects { repositories { maven { url 'file:///E:/Java/Repository'} mavenLocal() maven { name "Alibaba" ; url "https://maven.aliyun.com 阅读全文
posted @ 2022-02-10 14:57 ascertain 阅读(17) 评论(0) 推荐(0) 编辑
摘要: user nginx; worker_processes auto; worker_processes 4; worker_cpu_affinity 0001 0010 0100 1000; worker_rlimit_nofile 65536; #error_log logs/error.log; 阅读全文
posted @ 2022-02-10 14:41 ascertain 阅读(87) 评论(0) 推荐(0) 编辑
摘要: #!/bin/env bash for branch in $(git branch -a | grep '^\s*remotes/origin/' | grep -Ev '(:?HEAD|master)$'); do git branch --force --track "${branch##*/ 阅读全文
posted @ 2022-02-10 13:02 ascertain 阅读(115) 评论(0) 推荐(0) 编辑
摘要: URL - Web APIs | MDN (mozilla.org) URL | Node.js v17.4.0 Documentation (nodejs.org) 阅读全文
posted @ 2022-02-10 13:01 ascertain 阅读(32) 评论(0) 推荐(0) 编辑
摘要: Import-Module posh-git $GitPromptSettings.DefaultPromptWriteStatusFirst = $true $GitPromptSettings.DefaultPromptBeforeSuffix.Text = ' $([DateTime]::no 阅读全文
posted @ 2022-02-09 13:11 ascertain 阅读(211) 评论(0) 推荐(0) 编辑
摘要: invoke-item $profile 阅读全文
posted @ 2022-02-09 11:04 ascertain 阅读(24) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2022-02-08 15:49 ascertain 阅读(53) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2022-02-08 13:45 ascertain 阅读(28) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2022-02-08 13:02 ascertain 阅读(54) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 55 下一页