search for: pgdata

Displaying 14 results from an estimated 14 matches for "pgdata".

Did you mean: pdata
2005 May 19
2
Mysterious (bogus?) rsync(d) errors -- (code 23) at main.c(1045)
...methods (i.e. either by copying from the local directories to the other server's rscynd, or the other way), we are getting mysterious failures to rsync. The command line used is: /usr/bin/rsync --perms --owner --group --times --recursive --safe-links --delete-after server2::postgres-data /pgdata Which transfers a whole bunch of data, and then gives these failures: chown . : Operation not permitted skipping non-regular file "pgdata/base/17521/pgsql_tmp" skipping non-regular file "pgdata/pg_xlog" chown . : Operation not permitted rsync error: some files could not be tran...
2007 Sep 25
1
Postgres Config File (eg: PGDATA)
Hi guys, need some clarification on whether there is a config file sourced by the init script to determine where PGDATA is located. Right now, it seems like it's not sourced from anywhere by located on the init file itself. Appreciate if you guys can let me know if this is the correct place for altering it.
2013 Mar 19
3
Puppet modifying directories by executing shell script as non-root user results in kernel-level insufficient privilege complaints
...king directory to the module''s destination, and the initializePostgres shell script is executed as user postgres (belonging to group postgres). The puppet agents OS has a user postgres belonging to group postgres. The shell script contains an initdb command that initializes a postgres PGDATA directory, and both have the following permissions: [root@host]# ls -al initializePostgres.sh -rwxr-x---. 1 postgres postgres 2231 Mar 14 18:04 initializePostgres.sh [root@host]# ls -ald data drwxr-xr-x. 2 postgres postgres 4096 Mar 18 17:34 data When Exec ["postgres init"] is ran, /v...
2011 Jan 24
2
Problem with factor analysis
Hi all, I am using the example on page 737 of "The R Book" by Michael J Crawley, to plot factor loadings against each other (in a multivariate analysis). However the following line code plot(loadings(model)[,1],loadings(model)[,2],pch=16,xlab="Factor 1", ylab="Factor 2") throws an error message "Error in plot.window(...) : need finite
2015 Apr 15
2
Update to 1503 release problem
On 15 Apr 2015 13:22, "Dennis Jacobfeuerborn" <dennisml at conversis.de> wrote: > > On 15.04.2015 12:41, Alessandro Baggi wrote: > > Hi there, > > Yesterday I've updated from 7 to 7.1 and today I've noticed on 2 server > > that postgresql systemd file was replaced with default values. This make > > postgres to no start and webserver give me
2010 Feb 28
3
puzzling md error ?
...ound LV VG Attr LSize Origin Snap% Move Log Copy% Convert glassfish vg1 -wi-ao 10.00G lv1 vg1 -wi-ao 97.66G oradata vg1 -wi-ao 30.00G pgdata vg1 -wi-ao 25.00G pgdata_lss_idx vg1 -wi-ao 20.00G pgdata_lss_tab vg1 -wi-ao 20.00G swapper vg1 -wi-ao 3.00G vmware...
2015 Apr 16
0
Update to 1503 release problem
Hi list, the update has modified /etc/systemd/system/multi-user.target.wants/postgresql.service pointing to /usr/lib/systemd/system/postgresql.service. I have edited postgres file to change PGDATA. How James says, I have edited postgresql.service manually. What is the correct way? Thanks in advance. On 04/15/2015 07:14 PM, James Hogarth wrote: > On 15 Apr 2015 13:22, "Dennis Jacobfeuerborn" <dennisml at conversis.de> wrote: >> >> On 15.04.2015 12:41, Alessa...
2010 Feb 04
0
How to start/stop database from rake?
Hello, I would like to start the database server (postgres) before tests are run and stop it afterwards. For this, I have created a little wrapper around rake: $ cat run-rake #! /bin/sh DB=`pwd`/db/pgdata # init database cluster if it does not exist yet [ -d $DB ] || initdb -D$DB # start the database server pg_ctl -D$DB -o "-h '''' -k $DB" -l postgreslog start # wait for it to accept connections sleep 1 # run rake with original arguments...
2015 Apr 16
1
Update to 1503 release problem
...em again. This is the way? On 04/16/2015 12:46 PM, Alessandro Baggi wrote: > Hi list, > the update has modified > /etc/systemd/system/multi-user.target.wants/postgresql.service pointing > to /usr/lib/systemd/system/postgresql.service. > > I have edited postgres file to change PGDATA. > > How James says, I have edited postgresql.service manually. > What is the correct way? > > Thanks in advance. > > > On 04/15/2015 07:14 PM, James Hogarth wrote: >> On 15 Apr 2015 13:22, "Dennis Jacobfeuerborn" <dennisml at conversis.de> >> wro...
2003 Nov 25
3
Persistent state of R
Hi I am using R as a back-end to some CGI scripts, written in Perl. My platform is Suse Linux 8.2, Apache 1.3.7. So the CGI script takes some form parameters, opens a pipe to an R process, loads up some Bioconductor libraries, executes some R commands and takes the ouput and creates a web page. It is all very neat and works well. I am trying to make my cgi scripts quicker and it turns out
2020 Nov 06
0
[PATCH v3 3/6] mm: support THP migration to device private memory
...inned or if anon_vma disappeared from under * us. */ -int split_huge_page_to_list(struct page *page, struct list_head *list) +static int __split_huge_page_to_list(struct page *page, struct list_head *list, + bool remap) { struct page *head = compound_head(page); struct pglist_data *pgdata = NODE_DATA(page_to_nid(head)); @@ -2653,14 +2684,16 @@ int split_huge_page_to_list(struct page *page, struct list_head *list) * is taken to serialise against parallel split or collapse * operations. */ - anon_vma = page_get_anon_vma(head); - if (!anon_vma) { - ret = -EBUSY; - got...
2020 Nov 06
12
[PATCH v3 0/6] mm/hmm/nouveau: add THP migration to migrate_vma_*
This series adds support for transparent huge page migration to migrate_vma_*() and adds nouveau SVM and HMM selftests as consumers. Earlier versions were posted previously [1] and [2]. The patches apply cleanly to the linux-mm 5.10.0-rc2 tree. There are a lot of other THP patches being posted. I don't think there are any semantic conflicts but there may be some merge conflicts depending on
2020 Sep 02
10
[PATCH v2 0/7] mm/hmm/nouveau: add THP migration to migrate_vma_*
This series adds support for transparent huge page migration to migrate_vma_*() and adds nouveau SVM and HMM selftests as consumers. An earlier version was posted previously [1]. This version now supports splitting a THP midway in the migration process which led to a number of changes. The patches apply cleanly to the current linux-mm tree. Since there are a couple of patches in linux-mm from Dan
2006 Apr 12
1
powerd not behaving with an Asus A8V-MX and Athlon 64 X2 3800+
...3 1K - 3 16 memdesc 1 4K - 1 4096 USB 132 13K - 135 16,32,64,128,256 I/O APIC 1 1K - 1 1024 entropy 1024 64K - 1024 64 atkbddev 2 1K - 2 32 VM pgdata 2 65K - 2 64 ppbusdev 3 1K - 3 128 CAM SIM 6 1K - 6 64 CAM dev queue 6 1K - 6 64 ata_generic 3 3K - 4 1024 UMAHash 1 1K - 1 256 UFS mount 12...