try to run ceramic node locally through cli, but getting this error.
Related
Whenever i try to use firebase it shows
# firebase help
# zsh: killed firebase help
no command is work every time it shows the same error message
i tried uninstalling and reinstalling it but it din't work and i used bun to install it
bun install firebase
I've got a linux server running RStudio, and I'm trying to connect to an SQL Anywhere database.
I have the drivers installed and configured, and I can connect using iSQL. When trying through RStudio, I continually get this error:
Error: nanodbc/nanodbc.cpp:983: 00000: [unixODBC][Driver Manager]Driver's SQLAllocHandle on SQL_HANDLE_HENV failed
However, if I launch an R script straight from /opt/bin/r/rscript, it connects.
The same thing happens when trying to connect with Python through a conda environment in my home directory. However, if I launch by typing "python test.py" into the terminal, the connection succeeds.
I'm on Ubuntu 18.04 with the SQL Anywhere 17 drivers. Any ideas would be appriciated.
Thanks.
I just solved this issue with a very similar setup: Connecting to a SQL Anywhere database, where the connection works from R when launched from the command line, but not from RStudio, and gives the error:
SQLAllocHandle on SQL_HANDLE_HENV failed
The key was to set the environment variables in RStudio to match those in my regular shell. In my case, these were $ODBCINI and $LD_LIBRARY_PATH. I reset them as follows:
In the shell, ran the following to get the values being used by console R.
echo $ODBCINI
echo $LD_LIBRARY_PATH
In RStudio, ran Sys.getenv() to confirm these values were different.
Reset the variables to match with
Sys.setenv(ODBCINI = "[path from shell]/odbc.ini")
Sys.setenv("LD_LIBRARY_PATH" = paste0(Sys.getenv("LD_LIBRARY_PATH"),":[user path from shell]"))
With this setup, I was able to connect from RStudio.
I was having this same error message with my new M1 Mac when I tried to connect with SQLite from RStudio. The RStudio solutions manual (https://solutions.rstudio.com/db/best-practices/drivers/) still only lists connection strings for odbc.ini and odbcinst.ini on an Intel Macs. When I changed my SQLite Driver in odbcinst.ini (located in /opt/homebrew/etc) after the Homebrew install to /opt/homebrew/lib/libsqlite3odbc.dylib instead of /usr/local/lib/libsqlite3odbc.dylib, it finally worked.
When I login to RStudio server installed as an Amazon Machine Image, I, I see the message "RStudio Server Initialization Error" and "Status code 500 returned," as in the screenshot. When I click OK, nothing changes.
What does this mean and how can I fix this?
Refer the following link. It will guide you about the complete installation of R-Studio Server along with required dependencies.
Automated Installation of R-Studio Using Shell Script
It would be useful if you could state which version of RStudio Server you are using. Neverthless, you can try the following:
Install the most recent version using: wget http://download2.rstudio.org/rstudio-server-0.98.1103-amd64.deb. If you want 32-bit version wget http://download2.rstudio.org/rstudio-server-0.98.1103-i386.deb.
Delete the startup files (.Rprofile, .Renviron, and .RData) from your initial working directory, which should be user's home.
Check if you can run R from command line and if your are getting any error messages - fix that first
I am trying to install Oracle SOA suite. http://www.oracle.com/technetwork/middleware/soasuite/downloads/index.html
So, now when I go to my location where I have my JDK and run the following command
http://www.oracle.com/technetwork/middleware/soasuite/downloads/index.html
I get the following error:
It says
could not create java virtual machine
and then gives the following error
"Error occurred during initialization of VM Could not reserve enough space for object heap"
I am new to this software. Please help
Seems that your JDK is under a path that includes a space (Program Files).
Move the JDK to be in a path that doesn't have spaces and try again.
When trying to launch Flex debaugger on my project, it does not launch and I get an error instead. Every other project in different workspaces launches just fine. This is the only one giving me an issue.
Here is the error:
Process terminated without
establishing connection to debugger.
Command:
"C:\Program Files\Adobe\Flex Builder
3\sdks\3.2.0\bin\adl.exe"
D:\fromLapTop\lapDocs\Flex\Workspaces\MothersRings\MothersRingsAir\bin-debug\MothersRingsAir-app.xml
D:\fromLapTop\lapDocs\Flex\Workspaces\MothersRings\MothersRingsAir\bin-debug
Output from command:
PreloadSwf paths must be local
trusted:
D:/fromLapTop/lapDocs/Flex/Workspaces/WebRequestNotifier/.metadata/.plugins/com.adobe.flash.profiler/ProfilerAgent.swf?host=localhost&port=9999error
while loading initial content
Anyone have any ideas on how I can fix this?
Thanks!
Can you try copying the pre-loadSwf path to C:\ drive too? Just a guess..