My teacher asked to install the oracle instant client with the instruction to run the setup.exe. However, I just couldn't find the setup.exe file after extract the zipped file. Here is all the files I got and another is the instruction.
the instruction to run the setup.exe
all the files I got
There's no setup.exe for instant client. You just unzip it to a directory, put that directory into PATH and off you go.
Instant Client Installation for Microsoft Windows 64-bit (presuming you're on MS Windows).
Screenshot you posted refers to Oracle client, NOT instant client! - these are two separate pieces of software.
Related
While doing some web development, I needed to have Memcached (source code) installed on my local machine to closely simulate what was going on my server.
How to install Memcached on Windows?
Steps to install Memcached on Windows:
Download a stable version, in either 32-bit or 64-bit I have tested the 64-bit version.
Unzip it in some hard drive folder. For example C:\memcached
There will be memcached.exe file in the unzipped folder.
Open a command prompt (need to be opened as administrator).
Run c:\memcached\memcached.exe -d install
For start and stop run following command line
c:\memcached\memcached.exe -d start
c:\memcached\memcached.exe -d stop
As told in some previous comments the v1.4.4 is sometimes coming from a trusted source, sometimes not and it becomes hard to find. But there is now a very stable Windows native port for both 32 bits and 64 bits versions.
https://github.com/jefyt/memcached-windows
It's running well on our two PHP servers (PHP7 and PHP8).
Hope this helps.
Another Cygwin version is also available here and runs well too
https://github.com/nono303/memcached
Tableau Version 2021.1.2
Java Version
openjdk 16.0.1 2021-04-20
OpenJDK Runtime Environment AdoptOpenJDK-16.0.1+9 (build 16.0.1+9)
OpenJDK 64-Bit Server VM AdoptOpenJDK-16.0.1+9 (build 16.0.1+9, mixed mode, sharing)
I placed the driver under ~/Library/Tableau/Drivers, but consistently getting the error message as shown in the attachment.Error Message from Tableau Desktop
I think that you are placing drivers in the wrong folders, you have to copy the .jar file inside the folder
C:\Program Files\Tableau\Drivers
If it doesn't exist you have to create it.
From the Tableau Drivers download page:
Follow these steps to install the JDBC driver for Amazon Athena on
your Windows computer:
Download the JDBC driver (.jar file) from the Amazon Athena User Guide
on Amazon's website. Move the downloaded .jar file to C:\Program
Files\Tableau\Drivers.
Try putting it as
/Users/<username>/Library/JDBC/AthenaJDBC42.jar
Try to unhide the hidden folder from the account which you mainly sign in from your Mac because there is a hidden Library folder where you would need to put the appropriate jar file in that's located in the folder.
My url was Computer/MacintoshHD/Users/myusername/Library
This is the Library directory where I pressed shirt+command+. to unhide it. There, you should be able to find an already created Tableau Folder which contains another directory known as Driver. You would need to place the appropriate jar file in the Driver folder.
Hope this helps!
Hi I have scenario that needs to upload a file in a webpage. Actually I know that selenium will not support file upload scenario. But this can be done in python with external libraries such as AUTOIT, PYWINAUTO. But the challenge is i have to run my code in a linux server that is going to call a windows remote machine.
When i tried installing pywinauto in linux server i got an error in importing winreg library. Hence i dont know how to proceed further. Please help me out to solve this scenario.
Both AutoIt and pywinauto are Windows-only libraries (at least for now). If you need to automate file upload on Linux, consider using AT-SPI accessibility (say pyatspi2 package).
If it's a server without X and DBus, I think the question is about remote code execution from Linux to Windows. Good option for the SSH remote execution is Fabric (very pythonic & nice), but using Cygwin or OpenSSH might be an additional challenge for you. There are many other tools like Ansible etc.
I'm learning C/C++, for the learning purpose I will be using netbeans-7.4 installed on my window-8 system.
How do I install MinGW without internet connection ?
On the MinGW HOWTO Install the MinGW (GCC) Compiler Suite page, they offer some Manual Installation instructions. These work without an Internet connection if you can get the installation files to your machine by some other means.
You will need a computer with an Internet connection to download the files for MinGW. But as long as you can put those files on, say, a USB thumb drive or other media, you should be OK. Download the files you'll need for your Windows 8 machine on an Internet-connected machine, and then transfer them to your Windows 8 box. This is what us old-timers sometimes jokingly called "sneakernet."
You will also need a tool like 7-Zip or similar (as noted on the page linked above), to unpack the archives you download. So, if you don't have that tool, you will also have to download that installer from an Internet connected machine and transfer it to your machine by thumb drive sneakernet as well.
new to working with Web Servers and despite my tedious Googling, I think I am missing some of the most general (obvious?) questions regarding how to install an open source web-based program.
I have a dedicated server running CentOS 6, 32GB of RAM, etc........ I used a SSH Client to install the prerequisites of PandoraFMS. Everything installed finE.
Now what, just upload all the open-source files onto the web server?? That's the part I am not understanding about the general process of installing an open source program using build files, do I just UPLOAD it all to my server, or am I missing something???
You use Yum from the command line. Here is a link to the documentation http://www.centos.org/docs/5/html/yum/sn-managing-packages.html. If you really want a linux box that is easy to use I recommend Ubuntu. Good Luck