Tumblr posts tagged #lightsail from across Tumblr — no login required.
The Metajet Lightsail? The Mag-Sail that the spacecraft uses to slow down reminds me of the Gravity Drive in my first book, which was used to travel to Mars in two hours. It would use the Sun’s gravity or magnetic field to reach Light Speed and slow down to Mars or any other planet in two hours. The Gravity Drive was totally fiction, but the Metajet Lightsail system to travel the solar system sounds… View On WordPress
How to Connect Visual Studio Code (VSCode) with AWS Lightsail using Remote SSH
In this article, we will explore how to connect Visual Studio Code (VSCode) with AWS Lightsail using Remote SSH. AWS Lightsail is a simple and cost-effective way to launch and manage virtual private servers in the cloud, while VSCode is a popular and versatile code editor. By combining the power of both, developers can enhance their productivity and collaborate seamlessly on AWS Lightsail instances. Let’s dive into the step-by-step process of setting up this connection. Ready filezila HOST : You can find the host address in AWS Lightsail, and make sure to set a static IP. Key File : You can download the key file from AWS Lightsail. How? 1. Remote - Download SSH Extension from VScode Remote - When you download SSH, Remote Explorer is activated on the left. remote ssh 2. Specify emails and folders in Remote Explorer For remote configuration, specify the folder to install e-mail and settings. Any email can be set, and the folder can be added by default, ` C:/User/…(username)/.ssh/config`. Let’s set the folder and open the folder with Vscode. 3. Config file settings If you open the above folder (…/.ssh/config), the config file is set. Enter values for HostName, User, and IdentityFile in the configuration file as shown below . Host xxxx.com HostName 18.XXX.XX.XX - AWS Lightsail 고정 IP User bitnami - (AWS Lightsail default username) IdentityFile C:UsersXXDocumentsGitHubXXXLightsailDefaultKey-eu-central-1.pem - Location where the Security Key obtained from AWS Lightsail is stored config 4. Remote folder connection If you click Remote Explorer on the left again, SSH is successfully connected. Click the connected SSH Host to open the relevant SSH. At this time, specify a folder. In my case, I found the folder location where Wordpress was installed and opened Wordpress. wordpress folder 5. Done In my case, by opening the folder where Wordpress is located, I can open Wordpress in Vscode through SSH connection. Because of this, it has the advantage of being able to easily find code or find files instead of the existing Filezilla. Conclusion By connecting Visual Studio Code using AWS Lightsail and remote SSH, developers have the opportunity to efficiently code, collaborate, and deploy applications. Combining the simplicity of AWS Lightsail with the powerful editing capabilities of VSCode increases productivity and streamlines the development process. Its easy setup and user-friendly interface make it accessible to developers of all levels. Connect your favorite code editor, Visual Studio Code, with AWS Lightsail to get all the benefits of remote development. Take advantage of cloud-based infrastructure, secure connectivity and collaboration capabilities to further enhance your development workflow. Frequently Asked Questions - Can I connect to multiple AWS Lightsail instances simultaneously using VSCode remote SSH? - Yes, you can connect to multiple AWS Lightsail instances simultaneously. Each instance has its own VSCode window. - In addition to AWS Lightsail, is the VSCode remote SSH extension available on other cloud platforms? - Yes, you can use the VSCode remote SSH extension on other cloud platforms that support AWS Lightsail. - Is the Remote SSH extension available in the free version of Visual Studio Code? - Yes, the Remote SSH extension is available in both the free and paid versions of Visual Studio Code. - Are there any additional charges for connecting to AWS Lightsail via remote SSH? - No, there is an additional charge for connecting to your AWS Lightsail instance via remote SSH. Read the full article
Move The Blog to AWS I recently moved my blog(s) from DigitalOcean (DO) to AWS (Amazon Web Service). This is the very first time I use AWS service for my blog in my whole life. I use Lightsail product from AWS, because it’s more simple to manage compared to Amazon EC2. I know that EC2 is more customizable compared to Lightsail, but at this moment I just don’t have the time to do so. The reason I have been using DO… View On WordPress
RIP, LightSail 2! You were the Kickstarter I was most proud of. The reentry completes a mission of nearly three-and-a-half years, during which LightSail 2 showed that it could change its orbit using the gentle push of sunlight, a technique known as solar sailing. LightSail 2 demonstrated that small spacecraft can carry, deploy, and utilize relatively large solar sails for propulsion. LightSail 2 completes mission with atmospheric reentry
Strong and Light? Our future spacecrafts will be made of Graphene Aerogel because it is strong and light. Dr Maggie Lieu @SpaceMog tells us about transparent Lightsails. Flying through space by beaming a focused light ray to the Graphene Aerogel Lightsail. Maggie explains that the Graphene Aerogel LightSail doesn’t need to be big to catch the sunlight. No, it sounds like she is saying a laser pen light is what… View On WordPress
How to Install AWS Lightsail WordPress
work to be done in advance Sign up for AWS and sign up for Lightsail Introduction If you’re looking to create a website or a blog using WordPress, AWS Lightsail provides a quick and easy way to set up your own virtual private server (VPS) with minimal effort. In this article, we will guide you through the step-by-step process of installing AWS Lightsail WordPress. By the end of this tutorial, you’ll have your WordPress website up and running on the AWS Lightsail platform. 1. Create *Instance First, you need to create an instance like the screen. For the platform, select Linux/Unix environment. The reason for this is that there are more blueprints and, in practice, Linux is easier to manage servers. And for Blueprint, let’s choose WordPress. *(AWS) What is an instance? An AWS instance is a cloud computing resource provided by Amazon Web Services (AWS). Instances are virtual servers that provide a computing environment in which you can run multiple operating systems (OS) and software. AWS instances come in a variety of sizes and performance options, and you can choose an instance type to suit your needs. For example, a small instance may be sufficient to host a basic web server, but larger and more powerful instances may be needed to run large databases or complex applications. You can create and launch as many AWS instances as you need on demand, and you can configure instance types, operating systems, storage and networking options, and more. Users can also scale their applications by resizing instances or using multiple instances as needed. AWS instances offer the flexibility and scalability of cloud computing, and you use and pay for as many resources as you need. This reduces the burden of managing infrastructure and allows you to quickly deploy and scale applications. *(IT) What is Blue Print? An IT blueprint is a plan or design document for implementing an information technology (IT) system or solution. When starting an IT project, a business or organization must consider various factors such as overall system architecture, network configuration, hardware and software requirements, security policies, database structure, and more. An IT blueprint documents these elements in detail and provides them as a blueprint that can be used during the implementation and maintenance phases. 2. Connect SSH to the created instance AWS Lightsail Dashboard Instances Instance is created after time passes as shown in the screen. *Click the SSH connection button to open the Lightsail Terminal (input window). ssh connection *What is SSH SSH stands for “Secure Shell,” and is a protocol that allows you to remotely access and communicate with a computer securely over a network. SSH uses encryption technology to ensure data confidentiality and integrity and provides secure access through authentication and encryption. SSH allows you to securely log in and run commands on another computer over the Internet or a local network. With SSH, you can authenticate by entering a password, or you can connect using a public/private key pair. SSH uses TCP port 22 by default, and most operating systems support SSH client and server software. SSH is used for a variety of purposes, such as remotely managing servers or transferring files. In a web hosting service, you can connect to a web server through SSH and perform tasks such as uploading files or changing settings. In addition, you can remotely connect to the server to execute commands or download files. Because SSH uses encryption technology, data transmitted over the network is safely protected to prevent leakage of important information. Then, a window appears as shown in the screen below. The important point here is that you need to enter the following command, the reason is to know the ID and password of WordPress. less bitnami_credentials lightsail ssh 3. Visit with Public IP public IP If you enter Public IP (a kind of phone book on the Internet = IP address) in the URL window, you can check the created template. If you add /admin to the address, you can check the login screen. If you enter the ID and password you found above, you can check the WordPress admin screen. example - 18.15.XXX.XX/admin WordPress login screen WordPress admin screen 4. How to change WordPress User password WordPress password If you want to change the password, click the Users menu on the left side of the administrator screen, and then click the Edit user button to change information such as the password. Read the full article
Amazon Lightsail Amazon Lightsail is a virtual private server(VPS) service provided by Amazon Web Services (AWS). It is intended to make the process of deploying and administering web applications and webpages. With Lightsail, small businesses can easily set up virtual servers, storage, databases, and networking resources without the complexities typically associated with traditional server management… Read more
SHIT BOI I DIE LOOK AT EM i needed to make my ‘76 rp characters as references (or at least a loose one) for heights obvs these are the gjinkas, not the real sats lmaooooo but in order: chipsat, icesat, lightsail (two diff designs i really liked for her,) juno (and what her damage looks like beyond her hair,) spirit, and messenger next up are the nanos and humans :3c height chart by parallaxabomination !
Laser Pushing a Lite Sail? I could tape a laser pen to a hot wheel’s car and put a Lite Sail in front of it, and have continuous motion or until the battery in the pen ran out of charge.‘Maybe that would work on the Moon, but Earth has an atmosphere that would need more power then what’s in a pen laser to have light rays push anything.’ The Angry Astronaut is telling us about a nuclear-powered laser on the space craft to… View On WordPress
라이트세일 인스턴스 업그레이드 및 설정 라이트세일 인스턴스 업그레이드 및 설정 월 5천원 정도 하던 국내 호스팅 서비스를 쓰다가, 저장 공간의 압박이 너무 커서 여기 저기로 옮겨 다니다 라이트세일에 정착한 것이 대략 2018년이다. (그 전에 해외 호스팅을 사용해봤는데, 얘들은 처음 1년 혹은 몇 달은 저렴하게 프로모션하지만, 그 이후로 요금은… 흠..) 처음 2년반 넘게 사용하는 동안에는 불편함이 없었는데, 워드프레스가 버전업이 되면서 무거워져서 그런지 점점 느려진다는 느낌이 들었다. 또, 번거롭게 설치하는 일 없이 사용하려고 bitnami 인스턴스를 사용했는데, 문제는 bitnami 스택에서 php만 업그레이드한다거나 하는 것이 어려웠다. (more…) View On WordPress
Bootstrap Multisite Wordpress on AWS Lightsail
Bootstrap Multisite WordPress on AWS Lightsail I wrote one on how to do this with Digital Ocean Multisite WordPress , but if you are on AWS, then you have some different options for Lightsail which is the easiest option. The instructions are really confusing, but basically, you use the Lightsail instructions to get it running and to get Route53 configured and then the Bitnami Multisite WordPress instructions to configure it. Those instructions… View On WordPress
Migrating My WordPress Database from a Lightsail Instance to a Standalone Database Last year, I moved this blog off of a EC2 instance running a too-old version of PHP to a Lightsail instance. I had to restart that instance in order to retrieve the images associated with all the prior posts so they looked exactly as they did before, but the end result was the same blog at a lower monthly cost. Since then, I installed and configured the WP Offload Media Lite plug-in to push all… View On WordPress
#lightsail is a Tumblr tag people add to their posts so others can find related content. This page collects public posts tagged #lightsail from blogs across Tumblr so you can browse them in one place.
Yes. Zoomblr shows posts tagged #lightsail with no login or account required — just scroll the feed above. It's completely free.
Open the blog of any post you like via its link, then use Zoomblr's post viewer to download the image in full resolution.
Zoomblr is a free Tumblr viewer — view and download any public blog's avatar and posts without an account.