Return to site

Ghost Ip

broken image


Introduction

Hostname to IP Address Lookup. This tool will provide you the IP address (or addresses, if applicable) of the hostname (ie www.yahoo.com) that you enter below.

To get Ghost Browser Premium, Ghost Proxy Control or Start Your Trial select the option that is best for you! Premium Gives You Unlimited Sessions and Identities and Ghost Proxy Control lets you assign a different proxy to each tab. Oct 18, 2013.

Ghost is an exciting new blogging platform focused on getting back to the basics. It allows you to focus on content and presentation without the usual bloat and distractions.

In previous guides, we discussed how to deploy Ghost on DigitalOcean with our one-click install. We also covered how to manage content and how to change themes and
settings.

In this guide, we will dive a little deeper into the configuration and discuss how to manage some aspects of the application from the command line.

How To Control the Ghost Service

The Ghost application is implemented on a daemon on our Droplet. This means that we can start, stop and restart it easily using Ubuntu's service command.

We can control the Ghost service like any other service:

Start Ghost:

Stop Ghost:

Restart Ghost:

Sometimes, after we've made changes to our configuration, it may also be helpful to restart nginx (our web server) as well:

You shouldn't have to use these commands often, but they are helpful to know if you are not too familiar with a Linux environment.

How To Back Up Ghost

Backing up Ghost is trivial, so you should do it often.

Ghost stores most of its data in a database called ghost.db.

If you would like to copy this directly, you can do so, but you should stop the Ghost service first:

You can copy this to your own computer by typing into your local terminal:


scp root@yourghostIP_address:/var/www/ghost/content/data/ghost.db .

This will copy it into your current local directory.

To copy themes, issue this command:


ssh -n root@yourghostIPaddress ‘tar zcvf - -C /var/www/ghost/content/themes .' | cat - > ghostthemes.tar.gz

This will create an archive file called ghost_themes.tar.gz with all of your themes in your current local directory.

To back up your images, you can run a similar command, which will create a file called ghost_images.tar.gz:


ssh -n root@yourghostIPaddress 'tar zcvf - -C /var/www/ghost/content/images .' | cat - > ghostimages.tar.gz

Don't forget to restart Ghost after you've downloaded the data:

Perhaps an easier way of doing this is through the web interface by visiting this page of your site:


domain_name/ghost/debug

You can click the 'Export' button to download a copy of your blog content and settings:

If you need to redeploy, you can always visit this page again and import the data file you just downloaded.

How To Upgrade Ghost

It is important to keep your Ghost installation up-to-date in order to keep yourself secure. You can find the official Ghost upgrade guide, which is updated regularly, here.

When a new version is released, you can get it from the Ghost website. You will probably have to create an account or sign in.

Ghost ip grabber

Search for a download link to the latest version and copy the link by right-clicking or control-clicking on the 'Download Now' button and selecting 'Copy Link Address' or 'Copy Link Location'. Kawasaki zephyr service manual.

Currently, the URL for the latest version is always here, although that may change in the future:

Log into your Ghost droplet as root. Before upgrading, back up the database to your home computer as we discussed above.

We will need the build-essential package in order to complete the Ghost upgrade. You can install it on your system by typing:

We will also want to stop the Ghost service before upgrading the files, so that no processes are modifying files as they are being overwritten:

Change to the web root directory:

Type wget followed by the URL for the latest version of Ghost. If you copied the link location, you can paste that here:


wget urltoghost_download

Delete the current contents of the core directory before copying the upgraded files over: How to make a pdf on mac.

Extract the files to the correct location to update the Ghost installation:


unzip -uo ghost*.zip -d ghost

The '-uo' options extract newer versions of files and create new files where necessary. DO NOT forget them or you may wipe out your information!

Next, you have to give control over the files to the Ghost process. You can do that by typing:

We will get new dependencies by changing into our ghost directory and using the npm command:

To implement your changes, restart the Ghost service:

If you ran into problems, the best thing to do is to repeat the process from the beginning and check for errors in the output of the commands. Most of the time, you will be able to catch any mistakes by running through a second time.

How To Test Ghost Configuration Changes

Ghost executes using a number of pre-configured 'environments'. Environments dictate which database to use, which URLs to respond to, and how to talk to the back-end server. Circular studio 1 8 – powerful tiny planet photo editor.

We usually run our instance of Ghost in the 'production' environment. This is, for the most part, configured correctly to serve your blog on a public-facing site.

If we wish to experiment with some of the settings, we can do so safely by creating a new environment, and then specifying those environments while starting Ghost.

Environments are configured in the config.js file in the document root. Open this file with your text editor:

Inside, you will see some code that looks like this:


var path = require('path'),
config;

config = {
development: {


},

}

Origin how to download purchased games.

Each of the section titles in red defines an environment. If we want to test changes in a new environment, we can copy the 'production' environment and make our modifications there.

To do this, we would copy everything between:

And the matching closing bracket (prior to the start of the next 'testing' environment):

Directly under the production block that we just copied, we can paste the chunk.

Next, change the second 'production' to the name of our temporary environment. We will use temporary.

Now, we have a new block to experiment with. You can adjust the settings here without worrying about messing up your regular site.

When you are done, save and close the file.

After we are done modifying the 'temporary' block, we need to tell Ghost to use this new block. We will do this by adjusting the value in the init script that starts Ghost.

Open the Ghost init script by typing:

Find the line that specifies the production environment:

Ghost Iphone Case

Change this to reference your new 'temporary' environment:

Save and close the file.

Now, we can restart Ghost to use our new settings:

Depending on the changes that you used, you may have to restart nginx as well:

When you have thoroughly tested your new configuration, you should move your changes from your temporary environment into your production environment.

After that, re-open the init script and change the environment rule back to 'production':

Again, restart Ghost:

How To Configure Email for Ghost

Ghost doesn't use email for very many things. At the time of this writing, it only uses it to send password reset emails. However, without this configured, you will see an annoying banner:

We need to configure email to get this to go away.

First, we can choose a provider. You can use a number of different email services. Check here for a list of well-known email services that work with Ghost's emailing system.

It is recommended that you create a new email address associated with the blog. You need to find the SMTP settings for your service. Use google to search:


your email choice SMTP

Some services have different login names and passwords for SMTP than for their regular services. Make sure you find out the information you need. For a Gmail account, for instance, you can use your normal login credentials.

Open the config.js file to input your mail settings:

You need to find the line in the 'production' section that deals with mail:



production: {
url: 'http://example.com',
mail: {},
database: {

Between the open bracket { and the closing bracket } of the mail line, you need to enter the following information:


mail: {
transport: 'SMTP',
options: {
service: ',
pass: '
name as it is referred to here.


mail: {
transport: 'SMTP',
options: {
service: 'servicename',
auth: {
user: 'SMTP
loginname',
pass: 'SMTP
password'
}
}
},

Save and close the file.

Restart Ghost to implement your changes:

Now, if you log out and click the 'forgot password' link, an email will be sent from the SMTP email you just configured to your account email.

Conclusion

Ghost Ip App

By now, you should have a pretty good grasp on how to do some behind-the-scenes configuration and maintenance for Ghost. You will only have to complete some of these steps once, while others (like backing up) should be run regularly.

Ghost Ip Sniffer

By Justin Ellingwood





broken image