usergrid

Resolving dependencies in Maven fails

|▌冷眼眸甩不掉的悲伤 提交于 2020-01-16 21:57:32
问题 I am trying to deploy Usergrid with the following POM file: https://github.com/apache/usergrid/blob/master/deployment/aws/pom.xml Initially, I got a bunch of dependency issues so I ran: mvn dependency:resolve-plugins In the output I got some errors and warnings: [WARNING] Could not transfer metadata org.codehaus.groovy:groovy-eclipse-batch/maven-metadata.xml from/to codehaus.org (http://repository.codehaus.org): repository.codehaus.org: unknown error [WARNING] Could not transfer metadata org

Resolving dependencies in Maven fails

本小妞迷上赌 提交于 2020-01-16 21:57:31
问题 I am trying to deploy Usergrid with the following POM file: https://github.com/apache/usergrid/blob/master/deployment/aws/pom.xml Initially, I got a bunch of dependency issues so I ran: mvn dependency:resolve-plugins In the output I got some errors and warnings: [WARNING] Could not transfer metadata org.codehaus.groovy:groovy-eclipse-batch/maven-metadata.xml from/to codehaus.org (http://repository.codehaus.org): repository.codehaus.org: unknown error [WARNING] Could not transfer metadata org

Resolving dependencies in Maven fails

那年仲夏 提交于 2020-01-16 21:57:26
问题 I am trying to deploy Usergrid with the following POM file: https://github.com/apache/usergrid/blob/master/deployment/aws/pom.xml Initially, I got a bunch of dependency issues so I ran: mvn dependency:resolve-plugins In the output I got some errors and warnings: [WARNING] Could not transfer metadata org.codehaus.groovy:groovy-eclipse-batch/maven-metadata.xml from/to codehaus.org (http://repository.codehaus.org): repository.codehaus.org: unknown error [WARNING] Could not transfer metadata org

Cannot login to Apache Usergrid deployed on Tomcat7

限于喜欢 提交于 2019-12-21 20:16:06
问题 I downloaded and built Apache Usergrid on my Ubuntu 14.04 LTS and deployed the ROOT.war on my local tomcat7 server as per instructions given at https://usergrid.incubator.apache.org/docs/deploy-local/. I copied usergrid-deployment.properties file to CATALINA_HOME/lib, restarted Tomcat server and am trying to test it using http://localhost:8080/system/database/setup as per the instructions. I get a login screen that has the following text at the top: [ A username and password are being

Add image (png file) to header of pdf file created with R

谁说我不能喝 提交于 2019-12-18 03:41:29
问题 I am trying to add an .png image (logo) to the header of my pdf report of graphs created with ggplot and printed to pdf. I found the following example how to add a image to a ggplot plot. But, I am looking to add the .png image to he header of the pdf which is outside the ggplot area. #------------------------------------------------------------------------------- # Example png file #------------------------------------------------------------------------------- library(reshape2) library(png)

Add image (png file) to header of pdf file created with R

淺唱寂寞╮ 提交于 2019-12-18 03:41:14
问题 I am trying to add an .png image (logo) to the header of my pdf report of graphs created with ggplot and printed to pdf. I found the following example how to add a image to a ggplot plot. But, I am looking to add the .png image to he header of the pdf which is outside the ggplot area. #------------------------------------------------------------------------------- # Example png file #------------------------------------------------------------------------------- library(reshape2) library(png)

unable to post file+data using python-requests

女生的网名这么多〃 提交于 2019-12-10 19:22:14
问题 I'm able to post file using curl curl -X POST -i -F name='barca' -F country='spain' -F file=@/home/messi/Desktop/barca.png 'http://localhost:8080/new_org/hel/concerts' Which I can get (file) as curl -X GET -H 'Accept: image/png' 'http://localhost:8080/new_org/hel/concerts/<id or name of entity>' But when I tried same thing using requests.post , I got error. Does anybody know why this happen. (Post Error encounter when file pointer is not at last, but when file pointer is at last, I got

Apigee Usergrid: Mass delete option missing

橙三吉。 提交于 2019-12-05 00:51:43
问题 I am using usergrid to store data for a customer project. It's got two collections carShowrooms and cars. So far I am good. But I have a scenario where I have refresh the masterdata of the collection cars. Everytime I do this, I have to delete all the existing data in cars and replace it with incoming cars data from the master inventory system. Now, with the docu in https://www.npmjs.org/package/usergrid, I see that I can only destroy one car at a time. car.destroy(function(err){ if (err){ /

Cannot login to Apache Usergrid deployed on Tomcat7

只愿长相守 提交于 2019-12-04 15:13:28
I downloaded and built Apache Usergrid on my Ubuntu 14.04 LTS and deployed the ROOT.war on my local tomcat7 server as per instructions given at https://usergrid.incubator.apache.org/docs/deploy-local/ . I copied usergrid-deployment.properties file to CATALINA_HOME/lib, restarted Tomcat server and am trying to test it using http://localhost:8080/system/database/setup as per the instructions. I get a login screen that has the following text at the top: [ A username and password are being requested by "http://localhost:8080" . The site says: "Usergrid Authentication". ]. I try to login with the

Apigee Usergrid: Mass delete option missing

 ̄綄美尐妖づ 提交于 2019-12-03 20:16:10
I am using usergrid to store data for a customer project. It's got two collections carShowrooms and cars. So far I am good. But I have a scenario where I have refresh the masterdata of the collection cars. Everytime I do this, I have to delete all the existing data in cars and replace it with incoming cars data from the master inventory system. Now, with the docu in https://www.npmjs.org/package/usergrid , I see that I can only destroy one car at a time. car.destroy(function(err){ if (err){ //error - car not deleted //winston log - tbd } else { //success - car deleted } }); This is ok for